uniapp h5 跨域问题怎么解决
时间: 2023-03-29 13:02:25 浏览: 1225
详解vue或uni-app的跨域问题解决方案
5星 · 资源好评率100%
可以使用代理的方式解决跨域问题。在项目的 `config/index.js` 文件中配置代理即可。
例如:
```
module.exports = {
dev: {
proxy: {
'/api': {
target: 'http://xxxxx.com',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
}
}
```
这样,所有以 `/api` 开头的请求都会被代理到 `http://xxxxx.com`。这样就能解决跨域问题了。
或者使用 CORS 解决跨域问题,在后台配置Access-Control-Allow-Origin,允许跨域的地址。
阅读全文