1. 程式人生 > >vue-cli3.x vue.config.js 跨域配置

vue-cli3.x vue.config.js 跨域配置

blog 調用 art code 頁面 port tail chang then


devServer: { open:
true, //瀏覽器自動打開頁面 host: "0.0.0.0", //如果是真機測試,就使用這個IP port: 8911, https: false, hotOnly: false, //熱更新(webpack已實現了,這裏false即可) proxy: { //配置跨域 /api: { target: "http://139.224.234.237:3000/api", ws:
true, changOrigin:true, pathRewrite:{ ^/api:/ } } } }
//調用
this
.$http.get(/api/order/getOrder) .then(res => { console.log(res.data); }) .catch(err => { console.log(err.data.message); });

參考:

https://blog.csdn.net/weixin_43067157/article/details/82079792?utm_source=blogxgwz0

vue-cli3.x vue.config.js 跨域配置