const cloud = require('wx-server-sdk')
cloud.init({
env: cloud.DYNAMIC_CURRENT_ENV
})
const db = cloud.database()
exports.main = async (e) => {
let x = await db.collection('x').aggregate()
.match({
_id: undefined
}).end()
console.log(x)
return x
}
云函数 云数据库,当match条件中的_id 为undefined时 aggregate 语句会返回表中的前20条数据。
正常合理的预期结果是不是应该是返回0条数据。
JSON.parse也有BUG