Vue跨域問(wèn)題可以通過(guò)以下幾種方式解決:
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://backend-api-url',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
}
}
this.$jsonp('http://backend-api-url', {params: {id: 1}})
.then(response => {
// 處理響應(yīng)數(shù)據(jù)
})
.catch(error => {
// 處理錯(cuò)誤
})
header('Access-Control-Allow-Origin: http://frontend-domain');
以上是解決Vue跨域問(wèn)題的幾種常見(jiàn)方式,根據(jù)實(shí)際情況選擇合適的方式。