TP5.1中關(guān)于$this->success()后續(xù)繼續(xù)執(zhí)行溉仑,被try catch異常的捕獲了導(dǎo)致返回一直是異常休雌。
錯(cuò)誤代碼
try {
.......
$this->success("操作成功");
} catch (\Exception $e) {
? ? ????$this->error("異常操作彰居,{$e->getMessage()}");
}
正確代碼
try {
.......
$this->success("操作成功");
}catch (HttpResponseException $exception){
? ? ? ? throw $exception;
} catch (\Exception $e) {
? ? ????$this->error("異常操作要销,{$e->getMessage()}");
}