vue add axios
Object.defineProperty(Vue.prototype, '$http', { value: axios })
module.exports = { devServer: { proxy: {//如需跨域請求多個域名,在此對象進行擴展便可 '/apis': { target: 'http://www.***.com/', ws: true, changeOrigin: true, pathRewrite: { '^/apis': '' } }, ... } } }
this.$http.post("/apis/<UrlPath>",{ "pageNum": 1, "pageSize": 5, "cityId": "", }).then(res=>{ console.log(res) })