自学内容网 自学内容网

跨域请求解决的核心

跨域请求后端解决方式

1.每个请必须都带有以下头,而非只有option请求才带

header(“Access-Control-Allow-Headers:x-requested-with,content-type,token”);
header(“Access-Control-Allow-Credentials:true”);
header(“Access-Control-Allow-Methods:POST,GET”);
header(“Content-Type:text/html;charset=utf-8”);
header(‘Access-Control-Allow-Origin:http://localhost:8080’);

2.如果是option请求需要

返回200状态码,比如php里面可以直接exit即可


原文地址:https://blog.csdn.net/qq_31340657/article/details/143784278

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!