解释一下app.getDBPromise({ db_name: 'goods', entity: { _id: db.command.in(goodsIdArray), } }).then(res => { var goodsMap = []; res.data.forEach(element => { goodsMap.push(element) });
时间: 2023-05-20 10:06:30 浏览: 44
这是一个使用小程序云开发的代码片段,通过调用 app.getDBPromise 方法获取名为 'goods' 的数据库中,_id 属性在 goodsIdArray 数组中的所有文档,并将结果存储在 goodsMap 数组中。
阅读全文