gpt4 book ai didi

vue.js - Vue js 的 CORS 问题

转载 作者:行者123 更新时间:2023-12-03 06:42:04 26 4
gpt4 key购买 nike

我用的是vuejs,地址http://localhost:8000 .

调用 api 时,出现 CORS 错误。 sid 未成功请求 header
要求

Domain from origin http://localhost:8080 has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.



let headers = {
'Content-Type': 'application/json',
'Access-Control-Allow-Origin': true,
};

最佳答案

您需要使用代理配置创建一个“vue.config.js”。

例子 :

 module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:8080',
ws: true,
changeOrigin: true
}
}
}
}

关于vue.js - Vue js 的 CORS 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56336673/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com