前后端都是在同一台云服务器上vue是部署在nginx上的,用的是80端口,springboot是用的8081端口,项目启动之后,vue跟后台的接口都能在我本地电脑访问,vue路径下发送post请求也是能获取后台的接口,但是从vue发送的请求就不能调用接口,项目是在springboot里做了跨域了,而且有个奇怪的问题是我本地把springboot的jar包启动之后前台就访问接口了,相当于服务器上的后台不起作用,前端直接访问我本地的开启的服务了,但我想实现的是前后端都放在服务器上运行,有没有人碰到过类似情况的,还是我网络或者linux设置的问题?
这个是登录的一个方法,我并没有在config.js做代理的设置
login: function () {
axios.post('http://127.0.0.1:8081/login',
{'account': this.form.account, 'password': this.form.password})
.then(
response => {
if (response.status === 200) {
sessionStorage.setItem('token', true)
sessionStorage.setItem('user', response.data.username)
if (response.data.msg === 'success') {
// this.$message.success(response.data.msg)
this.$router.push('/manager')
} else {
this.$message.error(response.data.msg)
}
} else {
this.$message.error(response.data.msg)
}
})
.catch(
response => {
alert('fail')
})
}
添加回答
举报
0/150
提交
取消