Hyperf-跨域问题

一、传统框架中

  • 在传统框架中一般来说有两种方案
    1,例如laravel入口文件index.php中加上允许跨域代码
    2,通过nginx反向代理
header('Access-Control-Allow-Origin:*');
if($_SERVER['REQUEST_METHOD'] == 'OPTIONS'){
    header('Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS,PATCH'); 
  // 设置是否允许发送 cookies
  header('Access-Control-Allow-Credentials: true');
    // 设置允许自定义请求头的字段
    header('Access-Control-Allow-Headers: Authorization,Content-Type,Content-Length,Accept-Encoding,X-Requested-with, Origin'); 
  exit;
}

二、Hyperf解决方式

1,建立一个跨域中间件
  • hyperf中没有入口文件
  • 使用中间件
withHeader('Access-Control-Allow-Origin', '*')
            ->withHeader('Access-Control-Allow-Credentials', 'true')
            // Headers 可以根据实际情况进行改写。
            ->withHeader('Access-Control-Allow-Headers', 'DNT,Keep-Alive,User-Agent,Cache-Control,Content-Type,Authorization');

        Context::set(ResponseInterface::class, $response);

        if ($request->getMethod() == 'OPTIONS') {
            return $response;
        }

        return $handler->handle($request);
    }
}
  • 中间件注册
 [
        \App\Middleware\CorsMiddleware::class
    ],
];
2,使用nginx反向代理
# 至少需要一个 Hyperf 节点,多个配置多行
upstream a2admin {
    # Hyperf HTTP Server 的 IP 及 端口
    server 127.0.0.1:9611;
}
server
{
    listen 80;
    server_name xxxxx;
    .......... 
    location /{
    add_header Access-Control-Allow-Origin *;
    add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
    add_header Access-Control-Allow-Headers 'DNT,Keep-Alive,User-Agent,Cache-Control,Content-Type,Authorization';

    if ($request_method = 'OPTIONS') {
        return 204;
    }
            }
       ........
        proxy_pass http://a2admin;
    }

}

你可能感兴趣的:(个人总结,php,hyperf,php,中间件,hyperf)