我想获得最小值为1
的记录我在服务器端这样写,它正在显示
the [object][object} has no such method min
返回Videos.find({})。min({reportlen:1});
任何替代方案???
答案 0 :(得分:0)
使用查询选择器$gte
// Matches documents where reportlen is greater or equal to 1
Videos.find({reportlen:{$gte:1}})