我在https://www.w3schools.com/nodejs/nodejs_mongodb_join.asp
运行Node.js + MongDB exercice有两个集合,订单和产品。在聚合之后,预期结果应为:
[
{ _id: 1, product_id: 154, status: 1, orderdetails: [
{ _id: 154, name: 'Chocolate Heaven' } ]
}
]
但是,在我的本地实例中,我得到以下结果:
[ { _id: 1, product_id: 154, status: 1, orderdetails: [ [Object] ] } ]
为了获得 {_id:154,名称:'巧克力天堂'} 而不是 [对象] ,我该怎么做?