我的 FOXX 播放应用程序中有此代码
var geodata = new Geodata(
applicationContext.collection('geodata'),
{model: Geodatum}
);
/** Lists of all geodata.
*
* This function simply returns the list of all Geodatum.
*/
controller.get('/', function (req, res) {
var parameters = req.parameters;
var limit = parameters['limit'];
var result = geodata.all().limit(10);
if (limit != "undefined") {
result = result.slice(0, limit);
}
res.json(_.map(result, function (model) {
return model.forClient();
}));
});
根据文档,我应该可以在这里使用分页 - 我想通过给定的“限制”参数来限制搜索结果,但这给了我一个错误
2016-05-16T14:17:58Z [6354] ERROR TypeError: geodata.all(...).limit is not a function