JsonResponseMiddleware.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. declare(strict_types=1);
  3. // +----------------------------------------------------------------------
  4. // | CatchAdmin [Just Like ~ ]
  5. // +----------------------------------------------------------------------
  6. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  7. // +----------------------------------------------------------------------
  8. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  9. // +----------------------------------------------------------------------
  10. // | Author: JaguarJack [ njphper@gmail.com ]
  11. // +----------------------------------------------------------------------
  12. // +----------------------------------------------------------------------
  13. // | CatchAdmin [Just Like ~ ]
  14. // +----------------------------------------------------------------------
  15. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  16. // +----------------------------------------------------------------------
  17. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  18. // +----------------------------------------------------------------------
  19. // | Author: JaguarJack [ njphper@gmail.com ]
  20. // +----------------------------------------------------------------------
  21. namespace catcher\middlewares;
  22. use think\Middleware;
  23. use think\Request;
  24. class JsonResponseMiddleware extends Middleware
  25. {
  26. public function handle(Request $request, \Closure $next)
  27. {
  28. $server = $request->server();
  29. $server['HTTP_ACCEPT'] = 'application/json';
  30. $request->withServer($server);
  31. return $next($request);
  32. }
  33. }