首页> 实战笔录 >PHP开发笔记 >ThinkPHP ThinkPHP
TP5 模型事务操作
作者:小萝卜 2019-11-21 【 TP5 】 浏览 3497
简介注意:数据只要涉及多表一致性操作,必须要开启数据库事务操作,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)
相关文章
- TP6/ThinkPHP6修改Session存活时间
- PayPal支付ThinkPHP3.2源代码
- TP6定义常量报错:Use of undefined constant CONTROLLER_NAME - assumed 'CONTROLLER_NAME'
- TP5.0视图和模板
- TP6报错:Non-static method think\Request::controller() should not be called statically
- thinkphp6 使用 jwt 生成 token 中间件验证token
- Tp6 $request->isAjax()不能验证axios提交的请求
- TP6批量打包下载文件图片
- tp6表单验证提交之后报错Call to a member function set() on null
- TP6导入、导出Excel教程
