如何处理未找到的资源?

时间:2016-12-29 13:38:56

标签: php laravel exception laravel-5 laravel-5.3

当我尝试访问已删除的图片网址时,我得到了这个:

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);
}

由于

0 个答案:

没有答案