当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Mongoose Query.prototype.exec()用法及代码示例


Mongoose 查询API.prototype.exec() 方法Mongoose API 的函数用于查询对象。它允许我们执行查询操作来获取结果数据。使用此方法我们还可以将查询操作作为参数提供给该方法。让我们了解一下exec()使用示例的方法。

用法:

query.exec( operation, callback );

Parameters: 该方法接受两个参数,如下所述:

  • operation:它用于指定要使用 exec 方法执行的操作。
  • callback: 它用于指定将被调用来处理 Promise 的回调函数。

返回值:此方法返回可以使用回调函数或 then 和 catch 块处理的 Promise。

设置 Node.js Mongoose 模块:

步骤1:使用以下命令创建 Node.js 应用程序:

npm init

第2步:创建NodeJS应用程序后,使用以下命令安装所需的模块:

npm install mongoose

项目结构:项目结构将如下所示:

数据库结构:数据库结构如下所示,MongoDB 中存在以下数据库。

示例 1:下面的示例说明了 Mongoose Connection 的基本函数exec()方法。我们只是执行find()方法结果使用此方法并处理返回的承诺exec()方法通过提供回调函数。

文件名:app.js

Javascript


// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
const URI = "mongodb://localhost:27017/geeksforgeeks";
const connectionObject = mongoose.createConnection(URI, {
    useNewUrlParser: true,
    useUnifiedTopology: true,
});
const studentSchema = new mongoose.Schema({
    name: { type: String, required: true },
    age: Number,
    rollNumber: { type: Number, required: true }
});
const StudentModel = connectionObject.model('Student', studentSchema);
StudentModel.find().exec((error, result) => {
    if (error) {
        console.log(error);
    } else {
        console.log(result);
    }
})

运行程序步骤:要运行应用程序,请从项目的根目录执行以下命令:

node app.js

输出:

[
{
_id: new ObjectId("63a40a1065e8951038a391b1"),
name: 'Student1',
age: 30,
rollNumber: 9,
__v: 0
},
{
_id: new ObjectId("63a4a98407370cdcd1961b1a"),
name: 'Student3',
age: 17,
rollNumber: 178,
__v: 0
},
{
_id: new ObjectId("63a4a9a207370cdcd1961b2c"),
name: 'Student2',
age: 18,
rollNumber: 176,
__v: 0
},
{
_id: new ObjectId("63c1330b76ed3b6397607f77"),
name: 'Student4',
age: 25,
rollNumber: 1025,
__v: 0
},
{
_id: new ObjectId("63c1335b1e51e14cbbb4c57b"),
name: 'Student5',
age: 15,
rollNumber: 7,
__v: 0
}
]

示例 2:下面的示例说明了 Mongoose Connection 的基本函数exec()方法。在此示例中,我们通过向文档提供操作名称和回调函数来更新集合中的文档之一exec()方法。

文件名:app.js

Javascript


// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
const URI = "mongodb://localhost:27017/geeksforgeeks";
const connectionObject = mongoose.createConnection(URI, {
    useNewUrlParser: true,
    useUnifiedTopology: true,
});
const studentSchema = new mongoose.Schema({
    name: { type: String, required: true },
    age: Number,
    rollNumber: { type: Number, required: true }
});
const StudentModel = connectionObject.model('Student', studentSchema);
const query = StudentModel.update(
    { name: "Student1" }, { age: 20 }
);
query.exec('update', (error, result) => {
    if (error) {
        console.log(error);
    } else {
        console.log(result);
    }
})

运行程序步骤:要运行应用程序,请从项目的根目录执行以下命令:

node app.js

输出:

{
acknowledged: true,
modifiedCount: 1,
upsertedId: null,
upsertedCount: 0,
matchedCount: 1
}

使用 Robo3T GUI 工具的数据库的 GUI 表示:

注意:最新版本7发布后,mongoose取消了.exec()中对回调的支持,现在我们可以使用promise的.then、.catch或async-await的try-catch。

这是在 .then 和 .catch 的帮助下更新的示例 1

Javascript


StudentModel.find().exec()
  .then(result => {
    console.log(result);
  })
  .catch(error => {
    console.log(error);
  });


相关用法


注:本文由纯净天空筛选整理自sakshio0hoj大神的英文原创作品 Mongoose Query.prototype.exec() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。