vue 更改连接后台的api示例

vue 更改连接后台的api,是更改在config文件夹下的index.js文件中的proxyTable的值。

如下代码,其中 10.1.166.88:8888/springTimes 为后台暴露出来的appi。

dev: { env: require('./dev.env'), port: 8886, autoOpenBrowser: true, assetsSubDirectory: 'static', assetsPublicPath: 'https://www.jb51.net/', proxyTable: { '/api': { target: 'http://10.1.166.88:8888/springTimes',//路径更改。 changeOrigin: true, pathRewrite: { '^/api': '' } } }, cssSourceMap: false }

更改后需要重新 npm run dev 才起效果。

以上这篇vue 更改连接后台的api示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/e1562627f2641a07b74526fd0532cc41.html