VUE跨域问题Access to XMLHttpRequest at
时间:2022-12-14 10:28:12|栏目:vue|点击: 次
问题描述
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 h函数的使用详解
栏 目:vue
本文标题:VUE跨域问题Access to XMLHttpRequest at
本文地址:http://www.codeinn.net/misctech/221323.html