The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard
vue项目中axios请求数据的时候请求失败,出现跨域问题。withCredentials 属性CORS请求默认不发送Cookie和HTTP认证信息。但是有的后台要把Cookie发到服务器,要服务器同意,指定Access-Control-Allow-Credentials字段。在axios的配置文件中配置withCredentials属性,默认带cookie给后台,importA...
·
vue项目中axios请求数据的时候请求失败,出现跨域问题。
withCredentials 属性
CORS请求默认不发送Cookie和HTTP认证信息。但是有的后台要把Cookie发到服务器,要服务器同意,指定Access-Control-Allow-Credentials字段。
在axios的配置文件中配置withCredentials属性,默认带cookie给后台,
import Axios from 'axios';
Axios.defaults.withCredentials=true;
更多推荐
已为社区贡献20条内容
所有评论(0)