首页> 实战笔录 >PHP开发笔记 >ThinkPHP ThinkPHP
TP5 模型事务操作
作者:小萝卜 2019-11-21 【 TP5 】 浏览 3404
简介注意:数据只要涉及多表一致性操作,必须要开启数据库事务操作,ThinkPHP5 中模型层中使用事务:
注意:数据只要涉及多表一致性操作,必须要开启数据库事务操作
ThinkPHP5 中模型层中使用事务:
try{
$this->startTrans();
$this->data($order_data)->isUpdate(false)->save();
$new_order = $this->order_no;
if (!is_numeric($new_order)) throw new Exception("商品订单添加失败");
$this->hasMany('OrdersAccess', 'order_no', 'order_no')->saveAll($data_order);
$this->commit();
return ['code' => '1001', 'msg' => '商品订单添加成功', 'data' => ['order_no' => $new_order, 'cart_list' => $data_order]];
}catch (Exception $e){
$this->rollback();
return ['code'=>'1008','msg'=>'商品订单添加失败','data'];
}
原文:https://www.kancloud.cn/mikkle/thinkphp5_study/557903
很赞哦! (1)
相关文章
- SQLSTATE[42S22]: Column not found: 1054 Unknown column 'Attr_id' in 'where clause'
- TP5.0 给图片加文字水印怎么控制文字的透明度
- TP5数据库操作时怎么过略不存在的字段
- tp6表单验证提交之后报错Call to a member function set() on null
- TP3.2使用join查询实例以及注意事项
- tp5使用jwt生成token,做api的用户认证
- ThinkPHP5/tp通用 redis锁 源码分享
- TP5.0视图和模板
- ThinkPHP3.2项目模块结构
- TP3.2模板内使用U方法详细介绍
