从流星js中的字段返回最小值

时间:2014-09-26 09:39:17

标签: mongodb meteor meteorite

我想获得最小值为1

的记录

我在服务器端这样写,它正在显示

 the [object][object} has no such method min

返回Videos.find({})。min({reportlen:1});

任何替代方案???

1 个答案:

答案 0 :(得分:0)

使用查询选择器$gte

// Matches documents where reportlen is greater or equal to 1
Videos.find({reportlen:{$gte:1}})