我正在尝试从localhost:3000
的服务器获取对象。当我在浏览器中访问该地址时,我可以看到该对象。
我的前端运行我的Vue
实例的methods
属性中定义的此函数:
goToTutors: function(){
this.step='tutors';
this.$http.get('http://localhost:3000/tutors').then(
function(tutors) {
console.log("Tutors found!");
},
function(error) {
console.log(error);
});
}
但是在我的浏览器控制台中,我看到的只是错误:
未捕获的TypeError:_. isArray不是vue-resource.js中的函数:172
有人能指出我错误的原因吗?
答案 0 :(得分:0)
尝试更新您的vue-resource版本。它对我有用。