📜  处理过大异常 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:09.748000             🧑  作者: Mango

代码示例3
public function render($request, Throwable $exception)
 {
 if ($exception instanceof \Illuminate\Http\Exceptions\PostTooLargeException) {
     return $this->showCustomErrorPage();
 }
     return parent::render($request, $exception);
 }

 protected function showCustomErrorPage()
 {
     return \Illuminate\Support\Facades\Redirect::back()->withErrors(['max_upload' => 'The Message']);
 }