vue-resourse在android4.4.2的兼容问题
如题在在newwork看可以请求成功。
但是成功回调函数里面的代码没法运行。
beforeMount:function () {
this.$http.get(mainData.path + "/h5/recharge/apps").then((res)=>{
Vue.set(this,"load_show",false);
Vue.set(this,"appData",res.data.data);
// 服务器错误弹窗提示
if(res.data.error_code == 401){
location.href = "dongqiudi:///native/login";
}else if (res.data.error_code == 400) {
Vue.set(this,"propmt",true);
Vue.set(this,"err_msg",res.data.message);
}else if (res.data.error_code == 4002) {
location.href = res.data.message;
}
},(err)=>{
// 服务器错误弹窗提示
Vue.set(this,"propmt",true);
Vue.set(this,"err_msg","服务器君出小差了,请稍后尝试");
})
},
报这个警告Error in beforeMount hook
nexttick is undefined
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
始终没找到解决方案,最后用JQ封装的ajax方法。。。