编程题:在uniapp中,如何实现设置manifest.json文件,在H5端,可以访问后端http://localhost:9000/mvc以及http://localhost:8000/ssm服务器的接口信息。
时间: 2023-06-07 20:09:46 浏览: 182
设置json文件
你可以使用uni-app提供的配置文件vue.config.js,通过配置devServer.proxy实现代理解决跨域问题。在manifest.json文件中设置以下代码:
```json
{
"h5": {
"devServer": {
"proxy": {
"/mvc": {
"target": "http://localhost:9000",
"changeOrigin": true
},
"/ssm": {
"target": "http://localhost:8000",
"changeOrigin": true
}
}
}
}
}
```
这样在H5端访问"/mvc"或"/ssm"的接口时,就会自动代理到对应的后端服务器地址。
阅读全文