20------------------------云开发各项构建查询条件
1、限制查询3条,按时间顺序排列,如果是倒叙,则将asc改为descgetData(){ db.collection("demolist") .limit(3) .orderBy("time","asc").get() .then(res=>{ console.log(res) }) },云开发->SDK文档->数据库->Collection-&