我在项目中使用DB :: transaction一切正常,但我首先要做的是创建一个文件夹:
$folder = \File:: makeDirectory($path, perm, recur);
然后传递给我然后初始化我的DB :: transaction:
if($folder){
\DB::transaction(function() use($folderName){
/////--- do the db stuff in here.
})
} else {
///-- folder creation failed return message
}
这一切都很好,但如果我的文件夹被创建,那么DB ::事务失败,我无法知道这一点,所以我可以删除创建的文件夹,然后通知用户当前进程失败。 / p>
任何想法我如何获得回调类型,以便如果它失败然后删除文件夹,我尝试了尝试捕获但是laravels自己的错误接管,并且它没有那么远?
那我怎么能实现这个目标呢?
答案 0 :(得分:7)
如果事务失败,将抛出异常。你只是抓住了它:
$folder = \File:: makeDirectory($path, perm, recur);
if($folder){
try
{
\DB::transaction(function() use($folderName){
/////--- do the db stuff in here.
})
}
catch (\Exception $e)
{
/////--- DB STUFF FAILED
// TODO: DELETE FOLDER
throw $e;
}
} else {
///-- folder creation failed return message
}
编辑:请参阅laravel的源代码:https://github.com/laravel/framework/blob/a4c76fb3601ee75a23dc0aec3f1a7fde86faf91d/src/Illuminate/Database/Connection.php#L415