我有一些我无法找到解决办法...让我简单地解释一下:步骤1.在文档A中创建新集合步骤2.使用此id并在文档B中创建新集合步骤3.使用步骤2中的id更新步骤1中的集合
在nodejs中:
DocumentA.create({something})
.then((result)=>{
DocumentB.create({x : result.id})})
.then((result2) => {
DocumentA.updateOne({_id: ?????}, {$set:{y: result2.id}})
而且完全卡在这里(在???????????????????
1条答案
按热度按时间nue99wik1#
我建议您改用
async/await
,但您可以这样做:主要的事情是使用
return <Promise>
传递到下一个.then