模型的删除和数据库的删除方法区别在于,模型的删除会包含模型的事件处理
删除当前模型
删除模型数据,可以在查询后调用delete方法
<?phpnamespace app\controller;use app\model\Employees;use think\facade\Db;class DbTest{ public function index() { $employee = new Employees(); // 先查找 $res = $employee->find(94); // 再删除(因为返回值是布尔型,所以返回报错,但执行正常) return $res->delete(); } }
在这里插入图片描述
根据主键删除
或者直接调用静态方法(根据主键删除),当destroy方法传入空值(包括空字符串和空数组)的时候不会做任何的数据删除操作,但传入0则是有效的
User::destroy(1);// 支持批量删除多个数据User::destroy([1,2,3]);
条件删除
还支持使用闭包删除:
<?phpnamespace app\controller;use app\model\Employees;use think\facade\Db;class DbTest{ public function index() { Employees::destroy(function ($query){ $query->where('first_name', '麻子'); }); return Db::getLastSql(); } }
在这里插入图片描述
或者通过数据库类的查询条件删除(直接调用数据库的delete方法的话无法调用模型事件):
<?phpnamespace app\controller;use app\model\Employees;use think\facade\Db;class DbTest{ public function index() { Employees::where('first_name', '赵六')->limit(1)->delete(); return Db::getLastSql(); } }
在这里插入图片描述
总结
删除的最佳实践原则是:如果删除当前模型数据,用delete方法,如果需要直接删除数据,使用destroy静态方法。
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。