vue-resource http请求给出:'_。isArray不是函数

时间:2017-01-20 15:31:31

标签: node.js vue.js vue-resource

我正在尝试从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

有人能指出我错误的原因吗?

1 个答案:

答案 0 :(得分:0)

尝试更新您的vue-resource版本。它对我有用。