插件http-proxy-middleware在vue-cli中的使用
做用:把後端的API(遠程的API) 請求代理到本地服務器上,方便與後臺數據調試,先後端分離
server.js 模擬遠程API :localhost:8060/api/search (測試前運行 node server.js)

在vue-cli中的使用:運行localhost: 8080
1.在config文件夾下建立proxyConfig.js以下

2. 在/config/index.js中 引入,並配置
const proxyConfig = require('./proxyConfig')

前端http請求遠程API:在create鉤子時調用 this.test() 請求到API結果:我是遠程的數據源

學習資料詳細:
1.https://github.com/chimurai/http-proxy-middleware
2.https://vuejs-templates.github.io/webpack/proxy.htm
歡迎關注本站公眾號,獲取更多信息