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

测试

@@ -355,9 +355,11 @@ class Cart extends Api @@ -355,9 +355,11 @@ class Cart extends Api
355 Db::commit(); 355 Db::commit();
356 } catch (\think\exception\PDOException $e) { 356 } catch (\think\exception\PDOException $e) {
357 Db::rollback(); 357 Db::rollback();
  358 + $this->error($e->getMessage());
358 return false; 359 return false;
359 } catch (\think\Exception $e) { 360 } catch (\think\Exception $e) {
360 Db::rollback(); 361 Db::rollback();
  362 + $this->error($e->getMessage());
361 return false; 363 return false;
362 } 364 }
363 return true; 365 return true;