ppypp伦理天堂,91手机在线视频,免费在线观看黄色毛片,夜夜穞天天穞狠狠穞AV美女按摩

聯(lián)系官方銷售客服

1835022288

028-61286886

投訴 解決中 / 已回 Table操作類在前端使用,列表,和刪除不能的問(wèn)題 2 0
迅睿CMS版本:4.6.2 #批量刪除

Table操作類,在會(huì)員,與后臺(tái)都可以增,刪,改,我想在前端頁(yè)面也這樣用,但發(fā)現(xiàn),列表inde(),和刪除del()不行,請(qǐng)指點(diǎn)一下,

public function index() {
    list($tpl) = $this->_List(); // 完成table自動(dòng)查詢并分頁(yè)顯示動(dòng)作
    \Phpcmf\Service::V()->display($tpl); // 設(shè)定顯示模板
}
public function del() {
    $this->_Del(
        \Phpcmf\Service::L('Input')->get_post_ids(), // 獲取批量刪除id號(hào)
        null, // 刪除之前的函數(shù)驗(yàn)證
        null, // 刪除之后的函數(shù)處理
        \Phpcmf\Service::M()->dbprefix($this->init['table']) // 設(shè)定刪除表名稱
    );
}

解決方案