修改 `manifest.json` 文件 ```json "h5": { "devServer": { "proxy": { "/": { "target": "http://tp6.cy/api" } } } } ``` 请求接口 ``` wx.request({ url: '/login/index', success: res => { console.log(res) } }) ```