作者 何书鹏
1 个管道 的构建 通过 耗费 1 秒

测试

... ... @@ -355,9 +355,11 @@ class Cart extends Api
Db::commit();
} catch (\think\exception\PDOException $e) {
Db::rollback();
$this->error($e->getMessage());
return false;
} catch (\think\Exception $e) {
Db::rollback();
$this->error($e->getMessage());
return false;
}
return true;
... ...