我一直在阅读保存在MongoDB中的嵌套 JSON 元素。我正在尝试使用以下方法:
blockChainModel.find({"transactions.user": "eltaieyo"}, null, {projection : { transactions: {user : 1}} }, (err, blocks) => {
if (err) console.error("Cannot find the specified Blocks");
console.log(blocks);
});
我正在尝试读取的 MongoDB 中的 JSON 如下所示: JSON Image
我想读出“事务”部分,这就是我的代码中的当前方法所做的: 输出图像
也许它正在读出它们,但我的方法没有正确给出它们?