接上篇,ajax请求和普通的网络请求连接的session 的id不一样,导致会在后面的请求中无法访问到已经设置的session和cookie。所以有关验证码的请求,在请求时使用的是img 的src 属性的话会导致访问不到设置在session上的 imgCode值。普通请求src最好不要设置session.
(1)普通请求
(2)ajax请求
可以看到保存在ajax和普通请求的connect.id不一样。
所以
<img src="http://localhost:4001/get_code">
换成
<span class="img_code" @click="getImgCode" v-html="imgSRC"></span>
async getImgCode () {
const res = await this.$http.get(`/get_code/${Math.random()}`)
// const src = 'http://127.0.0.1:4001/' + 'get_code/' + Math.random()
// const img = document.getElementsByClassName('img_code')[0]
this.imgSRC = res.data
console.log(res)
},
这样获取session就没问题了