Mongoose API 的 Aggregate API.prototype.unwind() 方法用于执行聚合任务。它允许我们分解 MongoDB 数据库或架构中的复杂嵌套数组或文档字段。它为字段中存在的每个元素返回一个文档对象。它解构数组属性,为数组中的每个元素输出一个文档对象。
用法:
aggregate.unwind(field)
参数:该方法接受如上所述和如下所述的单个参数:
- field:它是MongoDB 数据库中的字段或属性。
返回值:此方法为数组字段中的每个元素返回一个文档对象。
设置 Node.js 应用程序:
步骤 1:使用以下命令创建 Node.js 应用程序:
npm init
步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:
npm install mongoose
项目结构: 项目结构将如下所示:
数据库结构:数据库结构如下所示,集合中存在以下文档。
示例 1:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 StudentSchema 定义了模型,具有三个列或字段 “studentId”、“studentName” 和 “marks”。最后,我们使用unwind()方法 在分数字段来解构数组并获取数组中每个元素的文档作为输出。
文件名: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 studentSchema = new mongoose.Schema({
studentId: Number,
studentName: String,
marks: []
});
const Student = mongoose.model('Student', studentSchema);
const aggregate = Student.aggregate();
aggregate.unwind("$marks").exec((err, result) => {
if (err) {
console.log(err)
} else {
console.log(result)
}
})
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
[ { _id: new ObjectId("63862e73d408a33b4481fd05"), studentId: 1, studentName: 'Aakash', marks: 50, __v: 0 }, { _id: new ObjectId("63862e73d408a33b4481fd05"), studentId: 1, studentName: 'Aakash', marks: 65, __v: 0 }, { _id: new ObjectId("63862e73d408a33b4481fd05"), studentId: 1, studentName: 'Aakash', marks: 75, __v: 0 }, { _id: new ObjectId("63862e73d408a33b4481fd06"), studentId: 2, studentName: 'Bhavesh', marks: 80, __v: 0 }, { _id: new ObjectId("63862e73d408a33b4481fd06"), studentId: 2, studentName: 'Bhavesh', marks: 70, __v: 0 }, { _id: new ObjectId("63862e73d408a33b4481fd06"), studentId: 2, studentName: 'Bhavesh', marks: 90, __v: 0 } ]
示例 2:在此示例中,我们使用 mongoose 建立了一个数据库连接,并在 statesSchema 上定义了模型,具有三个列或字段 “stateId”、“stateName” 和 “city”。最后,我们使用unwind()city 字段上的方法来解构数组并获取数组中每个元素的文档作为输出。在输出中,我们可以看到我们正在获取模式级别城市数组中存在的每个城市的文档对象。
数据库结构:数据库结构如下所示,集合中存在以下文档。
文件名: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 statesSchema = new mongoose.Schema({
stateId: Number,
stateName: String,
city: []
});
const State = mongoose.model('State', statesSchema);
const aggregate = State.aggregate();
aggregate.unwind("$city").then(result => {
console.log(result)
}).catch(err => {
console.log(err)
})
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
[ { _id: new ObjectId("63863213430c4520ce61c186"), stateId: 1, stateName: 'Maharashtra', city: 'Mumbai', __v: 0 }, { _id: new ObjectId("63863213430c4520ce61c186"), stateId: 1, stateName: 'Maharashtra', city: 'Pune', __v: 0 }, { _id: new ObjectId("63863213430c4520ce61c186"), stateId: 1, stateName: 'Maharashtra', city: 'Nagpur', __v: 0 }, { _id: new ObjectId("63863213430c4520ce61c187"), stateId: 2, stateName: 'Madhya Pradesh', city: 'Bhopal', __v: 0 }, { _id: new ObjectId("63863213430c4520ce61c187"), stateId: 2, stateName: 'Madhya Pradesh', city: 'Indore', __v: 0 } ]
参考:https://mongoosejs.com/docs/api/aggregate.html#aggregate_Aggregate-unwind
相关用法
- Mongoose Aggregate prototype.unionWith()用法及代码示例
- 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.unwind() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。