问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug DB.Collection.field 客户端 6.7.3 2.4.0
- 当前 Bug 的表现(可附上截图)
Collection.field 使用问题,如下代码,我期望结果只返回 description、done、progress 这 3 个 field, 不加 where 条件时结果符合预期,但如果加了 where 条件,便返回了全部的 field,我该怎么做?这是我使用不当,还是 BUG?
const db = wx.cloud.database()
db.collection('todos').field({
description: true,
done: true,
progress: true
})
.get()
.then(console.log)
.catch(console.error);
本文网址:http://www.91bianli.com/weixinxiaochengxu/37084.html