我尝试在vue http中设置根url,但失败了
main.js
import VueResource from 'vue-resource'
Vue.use(VueResource);
Vue.http.options.root = 'http://example.com';现在在我的组件中
this.$http.get("url").then()....//fails但是上面的代码没有使用根url example.com
https://stackoverflow.com/questions/47469034
复制相似问题