服务器返回头部允许跨域

1、前端通过Options方式发送请求;

2、服务端判断isOptions是否为true,为true返回以下头部,允许浏览器跨域

header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 

header("Cache-Control: no-store, must-revalidate"); 

header("Pragma: no-cache"); 

header('Access-Control-Allow-Origin:*');

header('Access-Control-Allow-Headers:X-Requested-With,accept, origin, content-type');

你可能感兴趣的:(服务器返回头部允许跨域)