我已经将Larvel 5.0与数据库事务一起使用了我之前的Web应用程序中的所有方法,它也很有用,我们非常喜欢它,因为这个应用程序对我的帮助远远超过我们估计的
所以我们通过使用这个框架的最新版本创建了另一个Web应用程序,并使用相同的数据库结构,但最终它对我和另一个不起作用。 我有更多的人,并在一些网站上发帖询问任何belp但还没有得到任何解决方案所以我记录这个视频肯定这个案例。
问题:我的问题我已禁用(// commit())方法,所有数据仍然可以插入到数据库中。
final function Add()
{
if ($this->request->isMethod('post')) {
//No you will see this method use with Try Catch and testing again
//DB::beginTransaction(); // Ihave testing with outside of try and inside again
Try{
DB::beginTransaction();
$cats = new Cat();
$catD = new CategoryDescriptions();
$cats->parent_id = $this->request->input('category_id');
$cats->status = ($this->request->input('status')) ? $this->request->input('status') : 0;
if (($res['result'] = $cats->save())== true) {
$catD->category_id = $cats->id;
$catD->language_id = 1;
$catD->name = $this->request->input('en_name');
if (($res['result'] = $catD->save()) === true) {
$catD2 = new CategoryDescriptions();
$catD2->category_id = $cats->id;
$catD2->language_id = 2;
$catD2->name = $this->request->input('kh_name');
$res['result'] = $catD2->save();
}
}
if(!empty($res)) {
//DB::commit();
}
return [$res,($res['result'] = $catD->save())];
}catch(\Exception $e){ // I have already try to use Exception $e without backslash
DB::rollback();
}
}
$cat = Cat::with(['CategoryDescriptions', 'children'])->where('status', 1)->get();
return view('admin.categories.add', ['cat' => $cat]);
}
您可以查看我的视频。
答案 0 :(得分:1)
我不知道为什么你的代码不起作用。但你可以试试这个代码,我认为它会起作用。 Laravel transaction documentation
try{
DB::transaction(function)use(/*your variables*/){
// your code
});
}catch(\PDOException $exception){
//debug
}
如果发生任何异常,它将自动回滚。如果您想要手动回滚,那么在内部事务中,您可以根据您的逻辑抛出手动异常。