## 事件处理
> 图片演示:
![](https://img.kancloud.cn/a1/43/a143991db26720a359d5e64086e74bac_1611x716.png)
> 说明:
头部工具栏、操作栏等的异步事件处理。
方法:`event($callable)`
* 参数 **callable** (必须),为 callable 闭包。
```php
event(function($event,$ids){...});
```
* 参数
* **event** string|number 类型
事件配置项对应的`key`值
* **ids** array 类型
选中数据行id集合数组
* 返回值:\think\response\Json 类型
* 成功:`success_json()` 可携带参数返回
例:success_json(["reload"=>false]); // 禁止表格重新加载
说明:reload 默认为true
* 失败:`error_json()` 可携带错误提示返回
该方法参数为`回调方法`,前端页面内触发的异步事件,会导致该方法的执行(如:如`移入回收站`等异步操作)。该`回调方法`携带`$event`、`$ids`参数,返回json执行结果。配合`success_json`、`error_json`公共方法使用。
> 参数说明:
| 参数 | 说明 |
| ---- | ---- |
|`$event`| 事件配置项对应的`key`值,如:`移入回收站`的`key`值为`22` |
|`$ids`| 事件影响行所对应的主键`id`数组 |
> 示例:
处理表格的还原、移入回收站、删除事件。方法如下:
```php
$builder=YT('general_example')->event(function($event,$ids){
switch ($event){
// 还原
case 11:
Db::name('test')->where([
['id','in',$ids],
['state','eq',22],
])->update(['update_time'=>time(),'state'=>11]);
return success_json();
// 移入回收站
case 22:
Db::name('test')->where([
['id','in',$ids],
['state','eq',11],
])->update(['update_time'=>time(),'state'=>22]);
return success_json();
// 删除
case 99:
Db::name('test')->where([
['id','in',$ids],
['state','eq',22],
])->update(['update_time'=>time(),'state'=>99]);
return success_json();
// 默认返回错误信息
default:
return error_json();
}
})
```
- 序言
- 基础
- 安装
- 目录结构
- 配置
- 版本
- 控制器
- 使用说明
- 视图模板
- 使用说明
- 区块重写
- seo
- headStyle
- headScript
- content
- script
- 验证器
- TP验证器
- 使用说明
- 自动处理
- 数据处理
- 前端验证器
- 概述
- 调用示例
- 通用验证规则
- 表单构建器
- 基础示例
- 初始化
- 链式操作
- tab
- url
- field
- fieldValidate
- button
- load
- submit
- 渲染输出
- 字段配置
- 使用说明
- 隐藏域(hidden)
- 文本框(text)
- 文本域(textarea)
- 密码框(password)
- 富文本(editor)
- 文档编辑(markdown)
- 下拉选框(select)
- 单选框(radio)
- 复选框(checkbox)
- 开关(switch)
- 日期(date)
- 时间日期(datetime)
- 年份(year)
- 月份(month)
- 时间(time)
- 单图(img)
- 多图(imgs)
- 单文件(file)
- 多文件(files)
- 取色器(color)
- 地区联动(area)
- 下拉搜索(dropdownSearch)
- 树(tree)
- 自定义字段
- 单一字段调用
- 概述
- 示例
- 表格构建器
- 基础示例
- 初始化
- 链式操作
- state
- url
- page
- limit
- limits
- filter
- filterValidate
- toolbar
- defaultToolbar
- import
- cols
- count
- items
- event
- 渲染输出
- 表头配置
- 使用说明
- 枚举(enum)
- 时间日期(datetime)
- 单图(img)
- 多图(imgs)
- 单文件(file)
- 多文件(files)
- 拖拽排序(dragSort)
- 颜色呈现(color)
- 地区呈现(area)
- 操作栏(action)
- 自定义表头
- JS事件
- 异步事件监听
- 导入构建器
- 基础示例
- 初始化
- 链式操作
- sheet
- cols
- colsValidate
- limit
- tips
- row
- rows
- 渲染输出
- 主题开发
- 实现步骤
- 系统主题
- 注意
- PHP公共方法库
- 配置
- yunj_config
- 构建器
- YF
- YT
- YI
- 重定向
- url_tips
- redirect_tips
- throw_redirect
- 响应输出
- response_msg
- response_json
- success_json
- error_json
- throw_json
- throw_success_json
- throw_error_json
- 数组
- array_eq
- array_in
- array_supp
- array_depth
- array_insert
- array_key_prefix
- 验证
- is_mobile
- is_positive_int
- is_positive_integer
- is_json
- is_datetime
- is_md5_result
- 时间日期
- msectime
- 字符串
- rand_char
- filter_sql
- start_with
- exception_to_str
- 数据加解密
- aes_encrypt
- aes_decrypt
- rsa_encrypt
- rsa_decrypt
- rsa_sign
- rsa_sign_verify
- JS公共方法库
- 调用说明
- 数据类型
- varType
- 判断
- isMobile
- isObj
- isEmptyObj
- isArray
- isEmptyArray
- isString
- isEmptyString
- isBool
- isNumber
- isFloat
- isFunction
- isUndefined
- isJson
- isCsv
- isXls
- isXlsx
- 字符串
- fileExt
- fileNameExt
- currTimestamp
- currDatetime
- timestampFormat
- 对象
- objSupp
- 图片
- previewImg
- url
- url
- urlParam
- urlPushParam
- 页面
- openNewPage
- openTab
- openPopup
- rawPageWin
- redirectTab
- redirectLogin
- isPopupPage
- isTabPage
- currPageId
- close
- closeCurr
- closeAll
- 网络
- request
- 数据加解密
- aesEncrypt
- aesDecrypt
- rsaEncrypt
- rsaDecrypt
- rsaSign
- rsaSignVerify
- 附录
- 升级指导
- 更新日志