码迷,mamicode.com
首页 > Web开发 > 详细

ThinkPHP6 模型事件用法

时间:2021-06-24 18:09:59      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:extend   insert   read   name   class   操作   方法   UNC   cti   

模型事件是指在进行模型的查询和写入操作的时候触发的操作行为

模型事件只在调用模型的方法生效,使用查询构造器操作是无效的

编号 事件 描述 事件方法名
1 after_read 查询后 onAfterRead
2 before_insert 新增前 onBeforeInsert
3 after_insert 新增后 onAfterInsert
4 before_update 更新前 onBeforeUpdate
5 after_update 更新后 onAfterUpdate
6 before_write 写入前 onBeforeWrite
7 after_write 写入后 onAfterWrite
8 before_delete 删除前 onBeforeDelete
9 after_delete 删除后 onAfterDelete
10 before_restore 恢复前 onBeforeRestore
11 after_restore 恢复后 onAfterRestore

namespace app\model;
use think\Model;
class Goods extends Model{
public function one_update(){
$update = Goods::update(
[‘price‘=>‘www.hezhidz.cn‘],
[‘id‘=>22]
);
return $update;
}
# 执行更新操作,就会之下onBeforeUpdate方法
public static function onBeforeUpdate($goods){
print_r($goods->price);
return true;
}
}

ThinkPHP6 模型事件用法

标签:extend   insert   read   name   class   操作   方法   UNC   cti   

原文地址:https://www.cnblogs.com/96net/p/14925631.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!