Merge pull request '跨域处理2' (#13) from zhangwei into dev

Reviewed-on: #13
This commit is contained in:
weiz 2023-10-10 15:07:16 +08:00
commit bf389c479a
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class LikeAdminAllowMiddleware
public function handle($request, Closure $next, ?array $header = []) public function handle($request, Closure $next, ?array $header = [])
{ {
header('Access-Control-Allow-Origin: *'); header('Access-Control-Allow-Origin: *');
header("Access-Control-Allow-Headers: Authorization, Sec-Fetch-Mode, DNT, X-Mx-ReqToken, Keep-Alive, User-Agent, If-Match, If-None-Match, If-Unmodified-Since, X-Requested-With, If-Modified-Since, Cache-Control, Content-Type, Accept-Language, Origin, Accept-Encoding,Access-Token,token,version,appid,url,timestamp,sign"); header("Access-Control-Allow-Headers: *");
header('Access-Control-Allow-Methods: GET, POST, PATCH, PUT, DELETE, post'); header('Access-Control-Allow-Methods: GET, POST, PATCH, PUT, DELETE, post');
header('Access-Control-Max-Age: 1728000'); header('Access-Control-Max-Age: 1728000');
header('Access-Control-Allow-Credentials:true'); header('Access-Control-Allow-Credentials:true');