收藏
回答

云函数中怎么添加判断字段是否存在而不影响原来的查询数据?


  return await db.collection("wz")orderBy("posttime","desc").where({

    where,

    zhushi:_.exists(true)

  }).get();

}

在做分类导航模块,我在.where里增加添加判断字段条件zhushi:_.exists(true),发现影响了原来的结果,点击对应的导航不显示


最后一次编辑于  2022-06-25
回答关注问题邀请回答
收藏

1 个回答

  • Mr.Zhao
    Mr.Zhao
    2022-06-24
    .where({
      ...where,
      zhushi:_.exists(true)
    })
    
    2022-06-24
    有用 1
    回复 1
登录 后发表内容