.maxAge(3600) .allowCredentials(true); } } 修改配置 main.js中写好请求前缀 Vue.prototype.$http= axios axios.defaults.baseURL ='http://localhost:8081/' axios发请求 methods: {getUserList() { this.$http.get('/user/1').then(response => { console.log(response) }) } }...