问题:运行H5 ,调用 uni.request() 报错404?
环境:
Node:14.21.2 和 16.16.0
编辑器:HBuilderX版本 3.7.x 和 3.6.5
工程是使用cli: npx degit dcloudio/uni-preset-vue#vite xxx
下载不了,就从gitee上拉的工程 https://gitee.com/dcloud/uni-preset-vue/repository/archive/vite.zip
项目:Vue3 + vite.config.js
vite.config.js中配置了proxy,
manifest.json中未配置proxy,
运行--> 运行到浏览器-->运行H5 ,调用 uni.request() 报错404?
但是在使用vue2规则下的,同样的接口却是访问正常的。
e***@163.com
- 发布:2023-03-03 09:18
- 更新:2023-03-03 11:58
- 阅读:768
e***@163.com (作者)
昨天在vite.config.js中也是这样配置的
server: {
proxy: {
'/dapi': {
target: 'https://testcloud.aurine.cn',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/dapi/, '')
}
}
}
现在可以了。感谢;感谢;感谢;
2023-03-03 12:09