mongodb報錯:the limit must be specified as a number。

suyu_yuan發表於2016-07-07

問題:the limit must be specified as a number。


解決:

db.memos.aggregate(
{ $limit: 7 },
{ $skip: 2 }
)

$limit後面的數字不能用 引號 包含,把引號去掉如上即可。







相關文章