当我尝试访问已删除的图片网址时,我得到了这个:
The requested resource /storage/images/5865c6789d48d96dd04ad92e7f7.jpeg was not found on this server.
那么如何处理这个错误或异常,所以我可以返回格式化的json。
我试图在FileNotFoundException
处理app\Exceptions\Handler
,但它无效
public function report(Exception $exception)
{
if ($exception instanceof FileNotFoundException) {
dd(json_encode['message'=>'file not found']);
}
parent::report($exception);
}
由于