fileviewfinder.php,Laravel在FileViewFinder.php中查找视图的错误处理程序
試圖為L(zhǎng)aravel實(shí)現(xiàn)自定義錯(cuò)誤處理程序,以便當(dāng)它被推送時(shí),404的等比正常的紅色和黑色屏幕更好。Laravel在FileViewFinder.php中查找視圖的錯(cuò)誤處理程序
我發(fā)現(xiàn)這其中的意義的作品:
App::error(function(Exception $exception, $code)
{
$pathInfo = Request::getPathInfo();
$message = $exception->getMessage() ?: 'Exception';
Log::error("$code - $message @ $pathInfo\r\n$exception");
if (Config::get('app.debug')) {
//return;
}
switch ($code)
{
case 403:
return Response::view('error/403', compact('message'), 403);
case 500:
return Response::view('error/500', compact('message'), 500);
default:
return Response::view('error/404', compact('message'), $code);
}
});
但創(chuàng)下了404頁(yè)時(shí),等它返回:
Error in exception handler: View [error/404] not found. in /Applications/MAMP/htdocs/buildsanctuary/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php:146
如果我改變了看法,以我的自定義視圖一個(gè)/嘗試在Response :: view中創(chuàng)建路徑。例如
Response::view('app/views/error404')
我收到相同的錯(cuò)誤。
或者,如果我改變行更改為:
View::make('a view here')
然后我得到一個(gè)白色的屏幕。任何想法如何使這些錯(cuò)誤鏈接到我的意見中的文件夾?
謝謝。
2014-12-31
Lovelock
+0
如何在你的'views'目錄結(jié)構(gòu)是什么樣子? –
+0
root> app> views> errors> 404.php –
+0
'errorS''Response :: view('errors/404',...)'should work –
總結(jié)
以上是生活随笔為你收集整理的fileviewfinder.php,Laravel在FileViewFinder.php中查找视图的错误处理程序的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java添加时间,如何通过Java中的a
- 下一篇: 实验二matlab数值,实验二MATLA