Mongoose API 的 Aggregate API.prototype.unionWith() 方法用于执行聚合任务。它允许我们组合两个集合的管道结果以获得单个结果集。但是,它还允许结果集中出现重复值。未指定顺序。
用法:
aggregate.unionWith( options )
参数:该方法接受如上所述和下面讨论的单个参数:
- options:它接受一个带有两个参数的对象,即要用来执行联合操作的集合名称和管道数组。
返回值:该方法以数组的形式返回组合结果集。
设置 Node.js 应用程序:
步骤 1:使用以下命令创建 Node.js 应用程序:
npm init
步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:
npm install mongoose
项目结构: 项目结构将如下所示:
数据库结构:数据库结构如下所示,集合中存在以下文档。
示例 1:在此示例中,我们使用 mongoose 建立了数据库连接并定义了模型板球运动员图式,具有三列或字段“_id”、“name”和“nationality”。我们定义的另一个模式是iplPlayerSchema,具有四个列或字段“_id”、“name”、“teamName”和“nationality”。最后,我们使用aggregate()方法通过选择 “nationality” 和 “_id” 字段板球运动员模型并将其存储到总计的多变的。对此总计的变量,我们正在访问unionWith()方法,并在其参数中,我们发送另一个集合名称来执行联合操作并获得一个组合结果集。
文件名:app.js
Javascript
// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
mongoose.connect("mongodb://localhost:27017/geeksforgeeks", {
useNewUrlParser: true,
useUnifiedTopology: true,
});
const cricketerSchema = new mongoose.Schema({
_id: Number,
name: String,
nationality: String
});
const iplPlayerSchema = new mongoose.Schema({
_id: Number,
name: String,
teamName: String,
nationality: String
});
const Cricketer = mongoose.model('Cricketers', cricketerSchema);
const IplPlayer = mongoose.model('IplPlayers', iplPlayerSchema);
const aggregate = Cricketer.aggregate(
[{ $project: { nationality: 1, _id: 0 } }]
)
aggregate.unionWith({
coll: "iplplayers",
pipeline: [{ $project: { _id: 0, nationality: 1 } }]
}).then(result => {
console.log(result)
}).catch(err => {
console.log(err)
})
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
[ { nationality: 'India' }, { nationality: 'Australia' }, { nationality: 'England ' }, { nationality: 'India' }, { nationality: 'South Africa' }, { nationality: 'Bangladesh' } ]
示例 2:在此示例中,我们在单个组合结果集中获取两个集合的所有字段。为了实现这一点,我们只需要将“coll”值提供给unionWith()方法。
文件名:app.js
Javascript
// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
mongoose.connect("mongodb://localhost:27017/geeksforgeeks", {
useNewUrlParser: true,
useUnifiedTopology: true,
});
const cricketerSchema = new mongoose.Schema({
_id: Number,
name: String,
nationality: String
});
const iplPlayerSchema = new mongoose.Schema({
_id: Number,
name: String,
teamName: String,
nationality: String
});
const Cricketer = mongoose.model('Cricketers', cricketerSchema);
const IplPlayer = mongoose.model('IplPlayers', iplPlayerSchema);
const aggregate = Cricketer.aggregate()
aggregate.unionWith({ coll: "iplplayers" })
.exec((err, result) => {
if (err) {
console.log(err)
} else {
console.log(result)
}
})
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
[ { _id: 1, name: 'Virat Kohli', nationality: 'India', __v: 0 }, { _id: 2, name: 'David Warner', nationality: 'Australia', __v: 0 }, { _id: 3, name: 'Ben Stokes', nationality: 'England ', __v: 0 }, { _id: 1, name: 'Rohit Sharma', teamName: 'Mumbai Indians', nationality: 'India', __v: 0 }, { _id: 2, name: 'David Miller', teamName: 'Chennai Super Kings', nationality: 'South Africa', __v: 0 }, { _id: 3, name: 'Shakib Al Hasan', teamName: 'Kolkata Knight Riders', nationality: 'Bangladesh', __v: 0 } ]
参考:https://mongoosejs.com/docs/api/aggregate.html#aggregate_Aggregate-unionWith
相关用法
- Mongoose Aggregate prototype.unwind()用法及代码示例
- Mongoose Aggregate prototype.sample()用法及代码示例
- Mongoose Aggregate.prototype.catch()用法及代码示例
- Mongoose Aggregate.prototype.exec()用法及代码示例
- Mongoose Aggregate.prototype.model()用法及代码示例
- Mongoose Aggregate.prototype.skip()用法及代码示例
- Mongoose Aggregate.prototype.limit()用法及代码示例
- Mongoose Aggregate.prototype.then()用法及代码示例
- Mongoose Aggregate.prototype.append()用法及代码示例
- Mongoose Aggregate.prototype.sortByCount()用法及代码示例
- Mongoose Aggregate.prototype.project()用法及代码示例
- Mongoose Aggregate.prototype.pipeline()用法及代码示例
- Mongoose Aggregate.prototype.match()用法及代码示例
- Mongoose Aggregate.prototype.cursor()用法及代码示例
- Mongoose Aggregate.prototype.sort()用法及代码示例
- Mongoose Aggregate.prototype.addFields()用法及代码示例
- Mongoose Aggregate.prototype.lookup()用法及代码示例
- Mongoose countDocuments()用法及代码示例
- Mongoose deleteMany()用法及代码示例
- Mongoose deleteOne()用法及代码示例
- Mongoose estimatedDocumentCount()用法及代码示例
- Mongoose exists()用法及代码示例
- Mongoose find()用法及代码示例
- Mongoose findById()用法及代码示例
- Mongoose findByIdAndDelete()用法及代码示例
注:本文由纯净天空筛选整理自kartikmukati大神的英文原创作品 Mongoose Aggregate prototype.unionWith() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。