一对一连接
在此页面上
简介
在本教程中,您可以学习如何使用 Node.js 驱动程序构建聚合管道,对collection执行聚合,并通过完成和运行示例应用来打印结果。
此聚合执行一对一联接。 当一个collection中的文档的字段值与另一个collection中具有相同字段值的单个文档相匹配时,就会发生一对一连接。聚合根据字段值匹配这些文档,并将两个来源的信息组合成一个结果。
提示
一对一联接不要求文档具有一对一的关系。 要了解有关此数据关系的更多信息,请参阅有关 一对一(数据模型)的 Wikipedia 条目。
聚合任务摘要
本教程演示如何将描述产品信息的集合与描述客户订单的另一个集合中的数据组合起来。 结果显示 2020 年所有订单的列表,其中包括与每个订单相关的产品详细信息。
此示例使用两个集合:
orders
:包含描述商店中产品的单个订单的文档products
:包含描述商店销售的产品的文档
一份订单只能包含一种产品,因此聚合使用一对一联接将订单文档与产品文档进行匹配。 这两个collection通过一个名为product_id
的字段连接,该字段存在于两个collection的文档中。
开始之前
在开始本教程之前,请完成聚合模板应用说明,以设立有效的 Node.js应用程序。
设置应用后,通过将以下代码添加到应用程序来访问orders
和products
collection:
const ordersColl = aggDB.collection("orders"); const productsColl = aggDB.collection("products");
删除所有现有数据,并将样本数据插入orders
collection,如以下代码所示:
await ordersColl.deleteMany({}); const orderData = [ { customer_id: "elise_smith@myemail.com", orderdate: new Date("2020-05-30T08:35:52Z"), product_id: "a1b2c3d4", value: 431.43, }, { customer_id: "tj@wheresmyemail.com", orderdate: new Date("2019-05-28T19:13:32Z"), product_id: "z9y8x7w6", value: 5.01, }, { customer_id: "oranieri@warmmail.com", orderdate: new Date("2020-01-01T08:25:37Z"), product_id: "ff11gg22hh33", value: 63.13, }, { customer_id: "jjones@tepidmail.com", orderdate: new Date("2020-12-26T08:55:46Z"), product_id: "a1b2c3d4", value: 429.65, }, ]; await ordersColl.insertMany(orderData);
删除所有现有数据,并将样本数据插入products
collection,如以下代码所示:
await productsColl.deleteMany({}); const productData = [ { id: "a1b2c3d4", name: "Asus Laptop", category: "ELECTRONICS", description: "Good value laptop for students", }, { id: "z9y8x7w6", name: "The Day Of The Triffids", category: "BOOKS", description: "Classic post-apocalyptic novel", }, { id: "ff11gg22hh33", name: "Morphy Richardds Food Mixer", category: "KITCHENWARE", description: "Luxury mixer turning good cakes into great", }, { id: "pqr678st", name: "Karcher Hose Set", category: "GARDEN", description: "Hose + nosels + winder for tidy storage", }, ]; await productsColl.insertMany(productData);
Tutorial
为 2020 年订单添加匹配阶段
添加$match阶段,用于匹配2020中所下订单:
pipeline.push({ $match: { orderdate: { $gte: new Date("2020-01-01T00:00:00Z"), $lt: new Date("2021-01-01T00:00:00Z"), }, }, });
添加查找阶段以链接collection
接下来,添加一个$lookup阶段。 阶段将 集合中的 字段连接到$lookup
product_id
orders
id
products
集合中的 字段:
pipeline.push({ $lookup: { from: "products", localField: "product_id", foreignField: "id", as: "product_mapping", }, });
添加设置阶段以创建新文档字段
接下来,向管道添加两个$set阶段。
第一个$set
阶段将product_mapping
字段设置为上一个$lookup
阶段中创建的product_mapping
对象中的第一个元素。
第二个$set
阶段根据product_mapping
对象字段中的值创建两个新字段product_name
和product_category
:
pipeline.push( { $set: { product_mapping: { $first: "$product_mapping" }, }, }, { $set: { product_name: "$product_mapping.name", product_category: "$product_mapping.category", }, } );
提示
由于这是一对一连接,因此$lookup
阶段仅向输入文档添加一个数组元素。 管道使用$first操作符检索此元素中的数据。
添加未设置阶段以删除不需要的字段
最后,添加一个$unset阶段。 $unset
阶段从文档中删除不必要的字段:
pipeline.push({ $unset: ["_id", "product_id", "product_mapping"] });
解释结果
聚合结果包含三个文档。 这些文档表示 2020 年发生的客户订单,以及所订购产品的product_name
和product_category
:
{ customer_id: 'elise_smith@myemail.com', orderdate: 2020-05-30T08:35:52.000Z, value: 431.43, product_name: 'Asus Laptop', product_category: 'ELECTRONICS' } { customer_id: 'oranieri@warmmail.com', orderdate: 2020-01-01T08:25:37.000Z, value: 63.13, product_name: 'Morphy Richardds Food Mixer', product_category: 'KITCHENWARE' } { customer_id: 'jjones@tepidmail.com', orderdate: 2020-12-26T08:55:46.000Z, value: 429.65, product_name: 'Asus Laptop', product_category: 'ELECTRONICS' }
结果由包含来自orders
集合和products
集合中的文档字段的文档组成,通过匹配每个原始文档中存在的product_id
字段来连接这些集合。
要查看本教程的完整代码,请参阅已 完成的一对一加入应用 在Github 上。