指定查询结果集数量上限
支持端:小程序 , 云函数 , Web
limit 在小程序端默认及最大上限为 20,在云函数端默认及最大上限为 1000
db.collection('todos').limit(10) .get() .then(console.log) .catch(console.error)