vue axios sessionID每次请求都不同的原因以及修改方式
作者:wxj_web
vue axios sessionID每次请求都不同的原因
今天应项目需要,需要在请求当中加入sessionID的验证,但是发现每一次发送给后台的请求当中,sessionID都是不一样的,那么原因是什么呢?
查阅度娘之后
发现自己封装的axios配置文件当中,缺少了一行:
import axios from 'axios' axios.defaults.withCredentials = true
这是axios的文档: https://www.kancloud.cn/yunye/axios/234845
// `withCredentials` 表示跨域请求时是否需要使用凭证 withCredentials: false, // 默认的
在我封装的axios请求当中,是没有 withCredentials的配置的, 如果没有配置为true,默认为false则向后台发送的请求当中不携带cookie信息,如此每一次sessionID自然会不同。
而再加入这一行配置之后,再次测试,发现出现新的的问题:
Response to preflight request doesn't pass access control check: The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard '*' when the request's credentials mode is 'include'. Origin 'http://localhost:8080' is therefore not allowed access. The credentials mode of requests initiated by the XMLHttpRequest is controlled by the withCredentials attribute.
这个时候,就需要后台的同事帮忙了,在后台的跨域请求头配置当中,进行如下两行的配置:
response.setHeader("Access-Control-Allow-Origin", "*");// 不能是通配符*
而是:
作用是将访问接口才ip注册进去。
第二个配置是:
Access-Control-Allow-Credentials: true
若是不设置成这个,也会出错。
而这样前后都设置完毕之后,再次请求,你会发现,还是出错了,那是因为,你需要在修改一个地址
host: 'localhost', // 这里要修改为你本机的ip地址,那少年,你就成功了 port: 8080, // 端口 autoOpenBrowser: false,
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。