预期响应包含一个数组但得到一个对象

Expected response to contain an array but got an object

所以我是 Angular 的新手,我查看了各种其他解决方案,但似乎没有一个适合我。我的应用程序需要从 mongodb 数据库中获取一些数据并将其显示给客户端。事情是我得到

Error: [$resource:badcfg] Error in resource configuration for action query. Expected response to contain an array but got an object

这是我在客户端SchoolCtrl.js

app.controller('SchoolsCtrl', function($scope, SchoolResource) {
    $scope.schools = SchoolResource.query();
});

这是我的 ngResource

app.factory('SchoolResource', function($resource) {
    var SchoolResource = $resource('/api/schools/:id', {id: '@id'}, { update: {method: 'PUT', isArray: false}});
    return SchoolResource;
});

这是我在服务器上的 SchoolsController

var School = require('mongoose').model('School');

module.exports.getAllSchools = function(req, res, next) {
    School.find({}).exec(function(err, collection) {
        if(err) {
            console.log('Schools could not be loaded: ' + err);
        }

        res.send(collection);
    })
};

我尝试添加 IsArray: true,尝试在资源中的 'SchoolResource' 之后添加 [],尝试更改路由,但没有任何效果。我想看看实际返回了什么,抱怨的查询不是数组,所以我把它变成了字符串,结果是这样的:

function Resource(value) { shallowClearAndCopy(value || {}, this); }

我不知道为什么它 returns 是一个函数。谁能帮帮我?

该错误消息通常表示您的服务器正在返回 JSON 表示单个对象,例如:

{"some": "object", "with": "properties"}

当 Angular 期望 JSON 表示数组时,例如:

[ {"some": "object", "with": "properties"}, {"another": "object", "with": "stuff"} ]

即使只有一个结果,query 期望数组 JSON:

[ {"a": "single", "result": "object"} ]

您可以通过简单地将 API 调用加载到浏览器并检查它来验证这一点。如果整个 JSON 响应周围没有方括号,则它不是数组。

我也遇到过,后来在控制台打印对象,发现是这样的:

{ options:{....},results:[ ...the Array I was looking for... ]}

所以你需要做的就是

res.send(collection.results);

希望对您有所帮助