赞
踩
在uni-app中解决跨域问题可以按照以下步骤进行:
在uni-app的根目录下找到vue.config.js
文件,如果没有则创建一个。
在vue.config.js
文件中添加以下代码:
- module.exports = {
- devServer: {
- proxy: {
- // 配置跨域
- '/api': {
- target: 'http://api.example.com', // 目标接口的域名
- ws: true,
- changeOrigin: true, // 是否允许跨域
- pathRewrite: {
- '^/api': '' // 替换成空字符,去掉/api前缀
- }
- }
- }
- }
- }
修改以上代码中的target
为你要请求的接口的域名地址。
然后在uni-app中请求数据时,将请求的url改为/api/xxx
,例如:
- // 发起请求
- uni.request({
- url: '/api/users', // 请求的url
- method: 'GET',
- success: (res) => {
- console.log(res.data)
- },
- fail: (err) => {
- console.log(err)
- }
- })
这样就可以解决uni-app中的跨域问题了。注意,需要在开发环境中使用vue.config.js
文件来解决跨域,生产环境下不会生效。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。