1.在我的鸡汤列表中只显示该用户写的鸡汤,所以才list查询中要用where定点查询该用户,where(user_id==$cloudEnv_uid
)此处用的jql语法,$cloudEnv_uid是云环境变量,直接获取用户uid,避免了我们用storge再调用用户id传值进来查询,这样十分简便,中间这个是`,反引号
await db.collection("soup-chicken").where(`user_id==$cloudEnv_uid`).field("publish_date,last_modify_date,content,soup_type,like_count,collect_count,comment_count,status").orderBy("last_modify_date", 'desc').limit(pageSize).skip(skip)