Uncaught (in promise) 的解决方法
<script type="text/javascript">var vm = new Vue({el:'#app',data:{msg:'hello world'},methods:{getInfo(){this.$http.jsonp('http://api.vue-tp5.com/v1/index/index').then(...
·
<script type="text/javascript">
var vm = new Vue({
el:'#app',
data:{
msg:'hello world'
},
methods:{
getInfo(){
this.$http.jsonp('http://api.vue-tp5.com/v1/index/index').then(function(result){
console.log(result)
}).catch(function(error){
console.log(error);
});
}
}
});
</script>
在then后加上catch即可
更多推荐
已为社区贡献1条内容
所有评论(0)