vue-cli3打包后分离配置文件

vue-cli3下将请求地址的配置文件分离出来以便于打包后可动态修改请求地址;
基本思路:
1.在public文件下新建serverConfig.json
`{
“production”:”https://www.easy-mock.com/mock/5bd2d48f3e503e20f0011196/testUrl”,
“develop”:”https://www.easy-mock.com/mock/5bd2d48f3e503e20f0011196/testUrl”
}`;
2.在main.js中请求serverConfig.json文件,
`function getServerConfig () {
return new Promise ((resolve, reject) => {

axios.get('./serverConfig.json').then((result) => {
  let config = result.data;
  let ajaxUrl = process.env.NODE_ENV == 'production' ? config.production:config.develop;
  Vue.prototype.$ajaxUrl=ajaxUrl; //设置全局
  store.commit('setAjaxUrl',ajaxUrl);//存储到vuex中
  resolve();
}).catch((error) => {
  console.log(error)
  reject()
})

})
}
async function init() {
await getServerConfig();
new Vue({

router,
store,
render: h => h(App),

}).$mount(‘#app’)
}
init();
`
请求路径就直接用$ajaxUrl就可以了。
只所以存储到vuex中,是因为,如果你封装了request请求,无法直接获取到请求的地址,也无法用到全局$ajaxUrl,只能从vuex中获取,如果没有封装,直接用$ajaxUrl就可以

    原文作者:々稻草ゞ
    原文地址: https://segmentfault.com/a/1190000017270334
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞