问题遇到的现象和发生背景
uniapp请求接口前端配置跨域例如请求接口为 'https://aip.baidu.com/oauth/2.0/token'
但是在manifest.json配置还是不行
问题相关代码
"h5" : {
"template" : "template.h5.html",
"devServer" : {
"https" : false,
"disableHostCheck": true,
"proxy": {
"/api": {
"target": "https://aip.baidu.com",
"changeOrigin": true,
"secure": false,
"pathRewrite": {
"^/api": ""
}
}
}
},
"router" : {
"mode" : "history"
}
}
运行结果及报错内容
http://10.8.9.32:8083/oauth/2.0/token 404 (Not Found)
我想要达到的结果
能够请求出数据