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


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


Mongoose API 的 Mongoose Query API.prototype.lean() 方法用于查询对象。它允许我们知道返回的文档是 Javascript 对象还是 mongoose 文档对象。使用此方法我们可以配置查询对象的选项。如果为从查询对象返回的文档启用了精简选项,则意味着它们是 javascript 对象,而不是 mongoose 对象。我们不能对它们使用 save、getter/setter 方法。让我们通过一个例子来理解lean()方法。

用法:

query.lean( <boolean> );

参数:此方法接受单个参数,如下所述。

  • bool:它用于指定一个布尔值。或者是真的,或者是假的。如果设置为 true,即查询对象的返回值是 Javascript 对象,否则它是 mongoose 文档对象。

返回值:该方法返回查询对象。

设置 Node.js Mongoose 模块:

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

npm init

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

npm install mongoose

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

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

示例 1:下面的示例说明了 Mongoose Connection 的基本函数lean()方法。在此示例中,我们将结果对象与 mongoose Document 类引用进行比较。

文件名:app.js

Javascript


// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
const URI = "mongodb://localhost:27017/geeksforgeeks";
let connectionObject = mongoose.createConnection(URI, {
    useNewUrlParser: true,
    useUnifiedTopology: true,
});
let studentSchema = new mongoose.Schema({
    name: { type: String, required: true },
    age: Number,
    rollNumber: { type: Number, required: true }
});
let StudentModel = connectionObject.model('Student',
    studentSchema);
(async () => {
    let doc = await StudentModel.find({ name: "Student1" });
    console.log(doc[0] instanceof mongoose.Document);
});

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

node app.js

输出:

true

示例 2:下面的示例说明了 Mongoose Connection 的基本函数lean()方法。在此示例中,我们可以轻松区分结果集是 JavaScript 对象的实例,而不是 mongoose Document 类的实例。

文件名:app.js

Javascript


// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
const URI = "mongodb://localhost:27017/geeksforgeeks";
let connectionObject = mongoose.createConnection(URI, {
    useNewUrlParser: true,
    useUnifiedTopology: true,
});
let studentSchema = new mongoose.Schema({
    name: { type: String, required: true },
    age: Number,
    rollNumber: { type: Number, required: true }
});
let StudentModel = connectionObject.model('Student',
    studentSchema);
StudentModel.find({ name: "Student1" }).lean(true).then(res => {
    console.log(res[0] instanceof mongoose.Document);
    console.log(res[0] instanceof Object)
});

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

node app.js

输出:

false
true

参考:https://mongoosejs.com/docs/api/query.html#query_Query-lean



相关用法


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