Posted in Vue.js onMay 06, 2022
问题描述
VUE发送请求的时候不能请求到正确数据,控制台如下
Access to XMLHttpRequest at 'http://localhost:8000/equip_fault_report/all' from origin 'http://localhost:8080' has been
blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
我的请求js中的URL是这样的
解决方案
在配置js中写入如下
devServer: {
proxy: {
'/api': {
target: 'http://localhost:8000',
changeOrigin: true,
pathRewrite: {
'/api': ''
}
}
}
}
解读为加链接头,开启跨域,加/api作为识别。
意为请求/api下的链接,直接回转到target
请求js的URl如下
解决
到此这篇关于VUE跨域问题Access to XMLHttpRequest at 的文章就介绍到这了!
VUE解决跨域问题Access to XMLHttpRequest at
- Author -
曾某人啊- Original Sources -
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Tags in this post...
Reply on: @reply_date@
@reply_contents@