最近使用node写了接口,想实现用户密码的录功能,其中使用了express-session来保存数据,奇怪的是,发送post请求时获取不到req.session的值,
router.get('./api/get_captcha,(req,res)=>{ //这是一个获取图形验证码的接口 cosnt captcha = svgCaptcha.create({ color:true, noise:1, size:4, ignoreChars:'Oo0i1' }); //保存验证码到session req.session.captcha = captcha.text.toLocalLowerCase(); //返回给客户端 res.type('svg'); res.status(200).sen(captcha.data); });
发送post请求
打印出来的req.session.captcha是undefined
出现这个BUG的原因是客户端在发送post请求的时候发生了跨域
解决的办法之一是:
在客户端使用吸片技术,使用/api等路径来代替网路请求的地址
在vue项目中在config/index文件夹下配置proxyTable(使用反向代理进行跨域)
这样问题就完美解决了