博客列表 >tp6解决跨域问题

tp6解决跨域问题

王娇
王娇原创
2022年04月22日 09:03:404314浏览
  • 终端中输入命令 新建一个Cross中间件
    php think make:middleware Cross
  1. * 设置跨域
  2. * @param $request
  3. * @param \Closure $next
  4. * @return mixed|void
  5. */
  6. public function handle($request, \Closure $next)
  7. {
  8. header('Access-Control-Allow-Origin: *');
  9. header('Access-Control-Max-Age: 1800');
  10. header('Access-Control-Allow-Methods: GET, POST, PATCH, PUT, DELETE');
  11. header('Access-Control-Allow-Headers: Authorization, Content-Type, If-Match, If-Modified-Since, If-None-Match, If-Unmodified-Since, X-CSRF-TOKEN, X-Requested-With, Token');
  12. if (strtoupper($request->method()) == "OPTIONS") {
  13. return Response::create()->send();
  14. }
  15. return $next($request);
  16. }
  • 在app下的middleware.php中使用中间件
  1. <?php
  2. // 全局中间件定义文件
  3. return [
  4. // 全局请求缓存
  5. // \think\middleware\CheckRequestCache::class,
  6. // 多语言加载
  7. // \think\middleware\LoadLangPack::class,
  8. // Session初始化
  9. // \think\middleware\SessionInit::class
  10. //解决跨域问题 自定义Cross中间件
  11. \app\middleware\Cross::class
  12. ];
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议