码迷,mamicode.com
首页 > Windows程序 > 详细

api接口开发跨域注意事项和设置

时间:2018-04-25 13:58:07      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:注意   code   access   agent   跨域请求   str   request   get   注意事项   

因为跨域请求会先发送一个OPTIONS请求,所以需要判断下OPTIONS请求的就直接返回

if(strtoupper($_SERVER[REQUEST_METHOD])== OPTIONS){
      header("Access-Control-Allow-Origin:*");
      header("Access-Control-Allow-Headers:content-type");
      header("Access-Control-Request-Method:GET,POST");
      exit;
}

在返回json数据的时候需要在头部加上

header(Access-Control-Allow-Origin: *);
header(Access-Control-Allow-Methods: GET,POST);
header(Access-Control-Allow-Headers: Destination, Content-Type, User-Agent, X-Requested-With, If-Modified-Since);
header(Access-Control-Allow-Credentials: true);

 

api接口开发跨域注意事项和设置

标签:注意   code   access   agent   跨域请求   str   request   get   注意事项   

原文地址:https://www.cnblogs.com/whlives/p/8943996.html

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