36 lines
1.5 KiB
PHP
36 lines
1.5 KiB
PHP
![]() |
<?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 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);
|
|||
|
}
|
|||
|
}
|