yii2用事务同时保存,应该怎么做??求大神指教 [ 2.0 版本 ]
模型1:Employee 保存员工信息。
模型2:User 保存登录密码等,每一个员工都对应一个user,用uid关联。
下面是我写的代码,感觉不合适,执行的时候,即便失败,id自增字段也会+1。
模型里处理:
public function save($runValidation = true, $attributeNames = null)
{
if($this->isNewRecord){
$tr = Yii::$app->db->beginTransaction(); // 创建事务
try{
$user = new User();
$user->username = $this->phone; //用手机号作为用户名
$user->email = $this->phone . '@qq.com'; // 邮箱随便填
$user->setPassword('123456'); // 初始密码
$user->generateAuthKey();
if($user->save()){
$this->uid = $user->id;
parent::save($runValidation, $attributeNames);
$tr->commit(); // 提交
}
}catch(Exception $exception){
$tr->rollBack(); // 回滚
return false;
}
return true;
}else{
return parent::save($runValidation, $attributeNames); // TODO: Change the autogenerated stub
}
}
共 4 个回答
-
要想事务回滚,必须抛出异常。
$user->save()
加个else{throw new Exception('错误信息')}
共 2 条回复$tr = Yii::$app->db->beginTransaction(); // 开始事务 try{ $user = new User(); $user->username = $model->phone; $user->email = $model->phone . '@qq.com'; $user->setPassword('123456'); $user->generateAuthKey(); if($user->save()){ $model->uid = $user->id; if(!$model->save()){ $error = array_values($model->getFirstErrors())[0]; throw new Exception($error);//抛出异常 } }else{ $error = array_values($user->getFirstErrors())[0]; throw new Exception($error);//抛出异常 } $tr->commit(); // 提交记录(执行事务) return $this->redirect(['view', 'id' => $model->id]); }catch(Exception $exception){ $tr->rollBack(); // 记录回滚(事务回滚) return $this->render('create', ['model' => $model]); }
如上代码,如果$user->save()保存失败的话,会直接catch,不会走else语句
小叮当的肚兜 觉得很赞 -
-
-
墨轩娣 无锡
注册时间:2015-03-25
最后登录:1天前
在线时长:280小时26分
最后登录:1天前
在线时长:280小时26分
- 粉丝38
- 金钱62225
- 威望150
- 积分66525