正题
一、Vue Resource如何使用?
大家都知道,我们在vue项目经常这样使用vue-resource
1.安装
npm install vue-resource --save
注:--save和--save-dev的区别就是,如果该npm包的代码需要被打包到上线文件,那就--save安装;否则就以--save-dev安装
2.初始化(在入口文件main.js文件中)
1 import Vue from 'vue'2 import VueResource from 'vue-resource'3 // 通过Vue.use使用vue-resource,然后$http对象就被添加到每个组件实例上了4 Vue.use(VueResource)
3.使用(在组件内)
1 this.$http.get(url, {}).then(function (response) {2 response.json().then(function(res) {3 // 这里是请求成功后的代码逻辑4 })5 }, function (error) {6 // 这里是请求失败后的代码逻辑7 console.log(error)8 })
二、问题
但实际在安卓低版本中会出现这个问题
1 this.$http.get(url, {}).then(function (response) {2 // 无论是成功还是失败,then中的代码是不会被执行的3 response.json().then(function(res) {4 // 不执行5 })6 }, function (error) {7 // 也不执行8 console.log(error)9 })
为何?其实vue-resource采用了ES6 Promise新特性(如何知道的?即使没看过vue-resource的官方文档,我们也可以知道,因为this.$http.get后面直接链式调用了then,then是Promise对象实例的方法,还记得不?),然后Promise本来就是有兼容性问题的,这就是问题的根本原因,那如何解决呢
三、解决方案
es6-promise可以解决这个问题,如何使用?很简单,看下面的代码
1.安装(安装到dependencies中)
npm install es6-promise --save
2.在入口文件main.js中引入使用
1 import Vue from 'vue'2 import VueResource from 'vue-resource'3 // cmd方式4 require('es6-promise').polyfill()5 // ES6模块方式6 import Es6Promise from 'es6-promise'7 Es6Promise.polyfill()
大功告成,是不是很简单,只需新增而无需删除现有代码,这样对于已经上线的项目是比较安全的