自定义404
webman在404时会自动返回public/404.html
里面的内容,所以开发者可以直接更改public/404.html
文件。
如果你想动态控制404的内容时,例如在ajax请求时返回json数据 {"code:"404", "msg":"404 not found"}
,页面请求时返回app/view/404.html
模版,请参考如下示例
以下以php原生模版为例,其它模版
twig
blade
think-tmplate
原理类似
创建文件app/view/404.html
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>404 not found</title>
</head>
<body>
<?=htmlspecialchars($error)?>
</body>
</html>
在config/route.php
中加入如下代码:
use support\Request;
use Webman\Route;
Route::fallback(function(Request $request){
// ajax请求时返回json
if ($request->expectsJson()) {
return json(['code' => 404, 'msg' => '404 not found']);
}
// 页面请求返回404.html模版
return view('404', ['error' => 'some error'])->withStatus(404);
});
自定义405
从webman-framework 1.5.23开始,回调函数支持传递status参数,如果status是404则代表请求不存在,405代表不支持当前请求方法(例如Route::post()设置的路由通过GET方式访问)
use support\Request;
use Webman\Route;
Route::fallback(function(Request $request, $status) {
$map = [
404 => '404 not found',
405 => '405 method not allowed',
];
return response($map[$status], $status);
});
自定义500
新建app/view/500.html
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>500 Internal Server Error</title>
</head>
<body>
自定义错误模版:
<?=htmlspecialchars($exception)?>
</body>
</html>
新建app/exception/Handler.php(如目录不存在请自行创建)
<?php
namespace app\exception;
use Throwable;
use Webman\Http\Request;
use Webman\Http\Response;
class Handler extends \support\exception\Handler
{
/**
* 渲染返回
* @param Request $request
* @param Throwable $exception
* @return Response
*/
public function render(Request $request, Throwable $exception) : Response
{
$code = $exception->getCode();
// ajax请求返回json数据
if ($request->expectsJson()) {
return json(['code' => $code ? $code : 500, 'msg' => $exception->getMessage()]);
}
// 页面请求返回500.html模版
return view('500', ['exception' => $exception], '')->withStatus(500);
}
}
配置config/exception.php
return [
'' => \app\exception\Handler::class,
];