uni-app跨域解決

  • 2019 年 11 月 6 日
  • 筆記

記一下uni-app預覽到H5時跨域問題

配置uni-app 中 manifest.json->h5->devServer

manifest.json

json  "h5": {          "devServer": {          "port": 8000,          "disableHostCheck": true,          "proxy": {              "/api": {                  "target": "http://test.com:xxxx",                  "changeOrigin": true,                  "secure": false,                  // 會把程式中/api開頭的路徑替換成:http://test.com:xxxx/api                  "pathRewrite": {                    "^/api": "/" // 設置/api路徑重定向                  }              }          }      }  }

請求

js  uni.request({      url: '/api/getUserInfo',      success: (res) => {          console.log(res.data);      }  });

請求會被解析為http://test.com:xxxx/api/