vue项目中常用的2个 ajax 库
1,vue-resource:vue插件,非官方库,vue1.x 使用广泛
https://github.com/pagekit/vue-resource
基本使用:
import VueResource from 'vue-resource' //引入模块
Vue.use(VueResource) //使用插件
this.$http.get( ' /someUrl ').then( (response)=>{
//success 回调
} , (response)=>{
//error 回调
} )
2,axios:通用的 ajax 请求库,官方推荐,vue2.x 使用广泛