标签:ons icp app val 访问 hang console exp local
在vue.config.js中,设置
module.exports = { publicPath: ‘/app‘, devServer: { proxy: { ‘/test‘: { target: ‘http://localhost:88‘, ws: true, changeOrigin: true, pathRewrite: { ‘^/test‘: ‘/‘, // rewrite path }, } } } }
axios中
this.axios.post(‘/test‘).then(value => { console.log(value); })
这样设置后,却访问不到,原因是,后台也要有 test字段, 这样设置后,后台访问的URL为: http://localhost:88/test ,而不是 http://localhost:88
标签:ons icp app val 访问 hang console exp local
原文地址:https://www.cnblogs.com/ztgzlu/p/13054141.html