add:优雅的返回 Json 数据

This commit is contained in:
JaguarJack 2020-09-08 10:06:53 +08:00
parent b07defb0e9
commit 3fb55deaaf

View File

@ -0,0 +1,38 @@
<?php
// +----------------------------------------------------------------------
// | CatchAdmin [Just Like ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
// +----------------------------------------------------------------------
// | Author: JaguarJack [ njphper@gmail.com ]
// +----------------------------------------------------------------------
// +----------------------------------------------------------------------
// | CatchAdmin [Just Like ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
// +----------------------------------------------------------------------
// | Author: JaguarJack [ njphper@gmail.com ]
// +----------------------------------------------------------------------
namespace catcher\middlewares;
use catcher\exceptions\FailedException;
use catcher\exceptions\PermissionForbiddenException;
use think\Middleware;
use think\Request;
class JsonResponseMiddleware extends Middleware
{
public function handle(Request $request, \Closure $next)
{
$server = $request->server();
$server['HTTP_ACCEPT'] = 'application/json';
$request->withServer($server);
return $next($request);
}
}