1 Star 0 Fork 3

智慧城市案例/智慧城市part1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
proxy.js 961 Bytes
一键复制 编辑 原始数据 按行查看 历史
syn 提交于 2020-10-13 10:55 . add
/*
* @Author: LMN
* @Title: API代理请求配置
* @Date: 2019-02-20 11:19:43
* @LastEditors: LMN
* @LastEditTime: 2019-06-25 20:46:43
* @Description: vue开发环境接口请求代理
*/
module.exports = {
proxy: {
// key值为接口前缀
'/api': {
// * 接口域名,这里需要配置
target: 'http://http://kfq.zjxj.gov.cn:8088/',
// 如果是https接口,需要配置这个参数
secure: false,
// 是否跨域
changeOrigin: true,
// 需要重写的
pathRewrite: {
/*
* key为前端用的统一接口前缀,默认/api,与上面key值保持一致
* value为后端用的统一接口前缀,一般为/api,如没有统一前缀改为''即可
*/
'^/api': '/api' // 这种接口配置出来 http://XX.XX.XX.XX:xxxx/api/login
// '^/api': '' // 这种接口配置出来(不建议使用) http://XX.XX.XX.XX:xxxx/login
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/tl_smart_city/smart_city_part1.git
git@gitee.com:tl_smart_city/smart_city_part1.git
tl_smart_city
smart_city_part1
智慧城市part1
master

搜索帮助