### c\_deletes
**批量删除对象**
~~~
function c_deletes() {
//$this->permDelCheck ();
$message = "";
try {
$this->service->deletes_d ( $_GET ['id'] );
$message = '删除成功!';
} catch ( Exception $e ) {
$message = '删除失败,该对象可能已经被引用!';
}
if (isset ( $_GET ['url'] )) {
$event = "document.location='" . iconv ( 'utf-8', 'gb2312', $_GET ['url'] ) . "'";
showmsg ( $message, $event, 'button' );
} else if (isset ( $_SERVER [HTTP_REFERER] )) {
$event = "document.location='" . $_SERVER [HTTP_REFERER] . "'";
showmsg ( $message, $event, 'button' );
} else {
$this->c_page ();
}
//msg('删除成功!');
}
~~~
- 架构
- 基础框架文档
- base/action(C层基类)
- protected 类定义
- __construct构造函数
- c_list
- c_index
- c_page
- c_pageJson
- c_listJson
- c_getByAjax
- c_getCountByName
- c_toAdd
- c_add
- c_init
- c_edit
- c_deletes
- c_ajaxdeletes
- c_saveBatch
- c_checkRepeat
- getDatadicts
- showDatadicts
- getDataNameByCode
- assign
- display
- view
- assignFunc
- model/base(M层基类)
- protected类定义(model)
- __construct
- find
- get_table_fields
- findAll
- findSql
- create
- delete
- findBy
- updateField
- query
- findCount
- update
- filterFunc
- filterField
- filterWithoutField
- filterCustom
- createBatch
- pageBySql
- listBySql
- pageBySqlId
- deletes
- 事务控制
- 获取对象数组
- addBatch_d
- add_d
- edit_d
- isRepeat
- 列表组件文档
- 基础表格
- 数据获取
- 表格数据显示
- 常用控制参数
- 表格右键扩展
- 表格扩展按钮
- 快速搜索
- 高级搜索(自定义视图)
- 表格注册事件
- 主从表格
- 可编辑表格
- 模块开发
- 开发案例
- 开发准则