Mongoose Query.prototype.clone()函数

Mongoose Query.prototype.clone()函数

Mongoose Query API clone() 方法用于复制mongoose查询,然后可以在任何时候执行。如果查询需要多次执行,此方法非常有用,因为单个查询无法执行两次。

语法:

Query.prototype.clone()

返回类型 :它以Query对象作为响应返回。

创建Node应用程序并安装Mongoose:

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

mkdir folder_name
cd folder_name
npm init -y
touch main.js

步骤2: 在完成Node.js应用程序后,使用以下命令安装所需的模块:

npm install mongoose

示例1: 在这个示例中,我们将使用这种方法来克隆一个查找年龄为“20”的文档的查询,并执行它。

文件名:main.js

// Importing the module 
const mongoose = require('mongoose') 
  
// Creating the connection 
mongoose.connect('mongodb://localhost:27017/query-helpers', 
    { 
        dbName: 'event_db', 
        useNewUrlParser: true, 
        useUnifiedTopology: true
    }, err => err ? console.log(err) 
        : console.log('Connected to database')); 
  
const personSchema = new mongoose.Schema({ 
    name: { 
        type: String, 
    }, 
    age: { 
        type: Number, 
    } 
}); 
  
const personsArray = [ 
    { 
        name: 'Luffy', 
        age: 20 
    }, 
    { 
        name: 'Nami', 
        age: 20, 
    }, 
    { 
        name: 'Zoro', 
        age: 35 
    } 
] 
  
const Person = mongoose.model('Person', personSchema); 
  
(async () => { 
    await Person.insertMany(personsArray) 
    const res = await Person.findOne({ age: 20 }).clone().exec() 
    console.log({ res }); 
})()

运行应用程序的步骤: 从项目的根目录中使用以下命令运行应用程序:

node main.js

输出:

Mongoose Query.prototype.clone()函数

使用MongoDB Compass的数据库的GUI表示:

Mongoose Query.prototype.clone()函数

示例2: 在此示例中,我们将使用此方法克隆一个查找所有“20”岁文档的查询并执行它。

文件名:main.js

// Importing the module 
const mongoose = require('mongoose') 
  
// Creating the connection 
mongoose.connect('mongodb://localhost:27017/query-helpers', 
    { 
        dbName: 'event_db', 
        useNewUrlParser: true, 
        useUnifiedTopology: true
    }, err => err ? console.log(err) 
        : console.log('Connected to database')); 
  
const personSchema = new mongoose.Schema({ 
    name: { 
        type: String, 
    }, 
    age: { 
        type: Number, 
    } 
}); 
  
const personsArray = [ 
    { 
        name: 'Luffy', 
        age: 20 
    }, 
    { 
        name: 'Nami', 
        age: 20, 
    }, 
    { 
        name: 'Zoro', 
        age: 35 
    } 
] 
  
const Person = mongoose.model('Person', personSchema); 
  
(async () => { 
    await Person.insertMany(personsArray) 
    const res = await Person.find({ age: 20 }).clone().exec() 
    console.log({ res }); 
})()

运行应用程序的步骤: 从项目的根目录中使用以下命令运行应用程序:

node main.js

输出:

Mongoose Query.prototype.clone()函数

使用MongoDB Compass的数据库GUI表示:

Mongoose Query.prototype.clone()函数

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程