私はnode.jsでmongooseを使用しています。私はトランザクションモデルと請求書モデルを持っています。 特定の請求書IDを持つすべてのレコードを取得したいと考えています。 imこのクエリを使用して請求書の照合トランザクションを取得します。すべての一致するレコードで特定の数値フィールドの合計を得る方法
Transaction.find({invoice_id: invoiceId})
イムは
[
{
"_id": "5795e3f4f4a0fb8c1dff20ad",
"description": "This is a transcation",
"invoice_id": "5795db00bfa9d366194a454d",
"amount": 50
},
{
"_id": "5795e3faf4a0fb8c1dff20ae",
"description": "This is a transcation",
"invoice_id": "5795db00bfa9d366194a454d",
"amount": 100
}
]
このフォーム内のレコードを取得しますが、問題は、私はまた、合計「量」フィールドトランザクション配列の各オブジェクトの値によってtotalAmountを取得したいということです。 私の望ましい結果は、集計関数の$和を使用して
[
{
"_id": "5795e3f4f4a0fb8c1dff20ad",
"description": "This is a transcation",
"invoice_id": "5795db00bfa9d366194a454d",
"amount": 50
},
{
"_id": "5795e3faf4a0fb8c1dff20ae",
"description": "This is a transcation",
"invoice_id": "5795db00bfa9d366194a454d",
"amount": 100
},
{
totalAmount: 150
}
]
そのイムですが、私は私の問題はこれで解決する方法を知りません。
'$ sum'集計アキュムレータ演算子の使い方を教えてください。 – chridam