common_delete

说明

豆信3在/App/Common/Controller/CommonController.class.php中封装了一个common_delete()方法,用于数据的通用删除。在任意直接继承或者间接继承了CommonController的控制器中,使用$this->common_delete()写法可以调用通用的数据编辑模板删除数据。

示例

common_delete - 图1

代码实现

  1. /**
  2. * 删除公众号
  3. * @author 艾逗笔<765532665@qq.com>
  4. */
  5. public function delete() {
  6. $this->setModel('mp')
  7. ->setDeleteMap(array('id'=>I('get.id')))
  8. ->common_delete();
  9. }