Mongoose API 的 Mongoose Query API.prototype.mod() 方法用于查询对象。它允许我们以模数的形式提供条件。使用此方法,我们可以选择字段值除以除数后具有指定余数的文档。让我们通过一个例子来理解mod()方法。
用法:
query.mod( path, [dividend, divisor] );
参数:该方法接受两个参数,如下所述:
- path: 用于以对象的形式指定更新查询表达式。
- array: 它用于指定除数和提醒值。
返回值:该方法返回查询对象,我们可以在该对象上调用回调函数。
设置 Node.js 应用程序:
步骤 1:使用以下命令创建 Node.js 应用程序:
npm init
步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:
npm install mongoose
项目结构: 项目结构将如下所示:
数据库结构:数据库结构如下所示,集合中存在以下文档。
示例 1:在此示例中,我们将说明以下函数mod()方法。最后,我们得到15 作为与集合中的文档之一匹配的提醒的值。
文件名: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 Customer = connectionObject.model(
"Customer",
new mongoose.Schema({
name: String,
address: String,
orderNumber: Number,
})
);
const query = Customer.find();
query.mod("orderNumber", [100, 15])
query.exec((error, result) => {
if (error) {
console.log("Error -", error);
} else {
console.log("Result -", result);
}
})
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
Result - [ { _id: new ObjectId("639ede899fdf57759087a655"), name: 'Chintu', address: 'Indore', orderNumber: 15, __v: 0 } ]
示例 2:在此示例中,我们将说明以下函数mod()方法。
文件名: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 Customer = connectionObject.model(
"Customer",
new mongoose.Schema({
name: String,
address: String,
orderNumber: Number,
})
);
const query = Customer.find();
query.mod("orderNumber", [25, 5])
query.then((res => {
console.log(res);
})).catch((err) => {
console.log(err);
})
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
[]
参考: https://mongoosejs.com/docs/api/query.html#query_Query-mod
相关用法
- Mongoose Query.prototype.mod()用法及代码示例
- Mongoose Query.prototype.map()用法及代码示例
- Mongoose Query.prototype.maxTimeMS()用法及代码示例
- Mongoose Query.prototype.merge()用法及代码示例
- Mongoose Query.prototype.all()用法及代码示例
- Mongoose Query.prototype.and()用法及代码示例
- Mongoose Query.prototype.batchSize()用法及代码示例
- Mongoose Query.prototype.box()用法及代码示例
- Mongoose Query.prototype.catch()用法及代码示例
- Mongoose Query.prototype.centerSphere()用法及代码示例
- Mongoose Query.prototype.circle()用法及代码示例
- Mongoose Query.prototype.collation()用法及代码示例
- Mongoose Query.prototype.cursor()用法及代码示例
- Mongoose Query.prototype.distinct()用法及代码示例
- Mongoose Query.prototype.exec()用法及代码示例
- Mongoose Query.prototype.explain()用法及代码示例
- Mongoose Query.prototype.geometry()用法及代码示例
- Mongoose Query.prototype.getOptions()用法及代码示例
- Mongoose Query.prototype.getPopulatedPaths()用法及代码示例
- Mongoose Query.prototype.getUpdate()用法及代码示例
- Mongoose Query.prototype.gt()用法及代码示例
- Mongoose Query.prototype.gte()用法及代码示例
- Mongoose Query.prototype.hint()用法及代码示例
- Mongoose Query.prototype.lean()用法及代码示例
- Mongoose Query.prototype.limit()用法及代码示例
注:本文由纯净天空筛选整理自kartikmukati大神的英文原创作品 Mongoose Query.prototype.mod() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。