本文实例讲述了Laravel5框架自定义错误页面配置操作。分享给大家供大家参考,具体如下:
"htmlcode">
composer create-project --prefer-dist laravel/laravel lar5Pro 5.5.*
- 发现在输入错误的链接时,会有如下的提示信息:
composer create-project --prefer-dist laravel/laravel lar5Pro 5.5.*
- 想到,一般成型的网站都会自定义404、501、503等页面,所以通过网上搜索方法,进行测试,可推荐如下的实现过程 …
框架: Laravel 5.5
"htmlcode">
public function render($request, Exception $exception)
{
/* 错误页面 */
if ($exception) {
//TODO Laravel5.5 框架中 Exception 类不存在 getStatusCode()方法,或许只能支持前面的版本!
//$code = $exception->getStatusCode();
$code = FlattenException::create($exception)->getStatusCode();
return response()->view('error.' . $code, [], $code);
}
return parent::render($request, $exception);
}
public function render($request, Exception $exception) { /* 错误页面 */ if ($exception) { //TODO Laravel5.5 框架中 Exception 类不存在 getStatusCode()方法,或许只能支持前面的版本! //$code = $exception->getStatusCode(); $code = FlattenException::create($exception)->getStatusCode(); return response()->view('error.' . $code, [], $code); } return parent::render($request, $exception); }
【分析】
经过对框架源码的查看发现,我们是通过实例化
FlattenException
类来获得请求状态码的,根据提供的测试类FlattenExceptionTest
,从而得出了上述的代码,建议可以阅读下源代码以做比较
③. 创建 view 页面
- 在
resources/views/error/
目录下创建错误页面 - 命名格式为 {error.code}.blade.php
④. 访问测试
- 举例来讲,在
404.blade.php
中编辑设计自己的 404页面 - 通过访问一个不存在的路由,以本人为例,显示效果如下:
- 默认如果数据处理有错,是 500 异常报错,此时可以通过 debug 查看并进行排错处理…
"htmlcode">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404页面</title>
<style>
#box{
margin: 0 auto;
width: 540px;
height: 540px;
}
p{
margin-bottom: 60px;
width: 540px;
height: 20px;
text-align: center;
line-height: 20px;
}
#mes{
font-size: 30px;
color: red;
}
.hint{
color: #999;
}
a{
color: #259AEA;
text-decoration:none
}
</style>
<script>
var i = 5;
var intervalID = setInterval("fun()", 1000);
function fun() {
if (i == 0) {
window.location.href = "/";
clearInterval(intervalID);
}
document.getElementById("mes").innerHTML = i;
i--;
}
</script>
</head>
<body>
<div id="box">
<img src="/UploadFiles/2021-04-02/404.jpg') }}">
更多关于Laravel相关内容感兴趣的读者可查看本站专题:《Laravel框架入门与进阶教程》、《php优秀开发框架总结》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于Laravel框架的PHP程序设计有所帮助。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>404页面</title> <style> #box{ margin: 0 auto; width: 540px; height: 540px; } p{ margin-bottom: 60px; width: 540px; height: 20px; text-align: center; line-height: 20px; } #mes{ font-size: 30px; color: red; } .hint{ color: #999; } a{ color: #259AEA; text-decoration:none } </style> <script> var i = 5; var intervalID = setInterval("fun()", 1000); function fun() { if (i == 0) { window.location.href = "/"; clearInterval(intervalID); } document.getElementById("mes").innerHTML = i; i--; } </script> </head> <body> <div id="box"> <img src="/UploadFiles/2021-04-02/404.jpg') }}">更多关于Laravel相关内容感兴趣的读者可查看本站专题:《Laravel框架入门与进阶教程》、《php优秀开发框架总结》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于Laravel框架的PHP程序设计有所帮助。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“Laravel5框架自定义错误页面配置操作示例”评论...