码迷,mamicode.com
首页 > Web开发 > 详细

php thinkphp 接口跨域问题 设置了headers 还是报错的解决方案 OPTIONS 跨域

时间:2020-03-26 01:29:28      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:hid   auth   off   poi   padding   access   rect   isp   inter   

if($_SERVER[‘REQUEST_METHOD‘] == ‘OPTIONS‘){
    header("Access-Control-Allow-Origin: *");
    header("Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept, Authorization");
    header(‘Access-Control-Allow-Methods: GET, POST, PUT,DELETE,OPTIONS,PATCH‘);
    exit;
}
//上面的代码很关键   问题就出在上面这里
header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept, Authorization");
header(‘Access-Control-Allow-Methods: GET, POST, PUT,DELETE,OPTIONS,PATCH‘);

php thinkphp 接口跨域问题 设置了headers 还是报错的解决方案 OPTIONS 跨域

标签:hid   auth   off   poi   padding   access   rect   isp   inter   

原文地址:https://www.cnblogs.com/tolingsoft/p/12571660.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!