我将节点版本从v8.9.4升级到9.5.0,我的Vuejs应用程序立即开始抛出Cors问题。我降级了,一切都恢复正常。为了确保这不是我在升级时失踪的东西,我想我会问是否有其他人有这个问题,或者如果有的话,你怎么能解决它。
我的Axios标题如下
Dependencies
axios: "^0.17.1",
vue: "^2.5.2"
HTTP-common.js
export const HTTP = axios.create({
baseURL: 'my base url',
withCredentials: true,
headers: {
'Accept': 'application/json',
common: {
'Content-Type': 'application/json; charset=utf-8'
},
post: {
'Content-Type': 'application/x-www-form-urlencoded'
}
},
emulateJSON: true
})