const db = wx.cloud.database()db.collection('todos').field({
description: true,
done: true,
progress: true,
// 只返回 tags 数组前 3 个元素
tags: db.command.project.slice(3),})
.get()
.then(console.log)
.catch(console.error)
2.8.3版本查询使用该命令就会报错
tags: db.command.project.slice(3)
改成true的话就没有问题
tags: true
那个方法有问题
替代方法
https://developers.weixin.qq.com/community/develop/doc/0008028a1544e89805691d3ea51000?jumpto=reply&parent_commentid=00088233fa4128c80569a48d1518&commentid=00044abf1a0018b904695639351c