登录请求
login (data)
return axios({ method: 'post', url: userApi.loginUrl(), data: data, withCredentials: true}) }
向服务端发送请求出现
在服务端pom.xml中添加
<!-- 跨域请求依赖 -->com.thetransactioncompany cors-filter 2.5
在服务端web.xml中添加
<!-- cors filter -->CORS com.thetransactioncompany.cors.CORSFilter cors.allowOrigin * true CORS /*
跨域参考文档: