Mongoose 查询API.prototype.error() 方法Mongoose API 的函数用于查询对象。它允许我们获取和设置特定查询的错误函数和操作。该错误操作将在exec()方法完成其操作。让我们了解一下error()使用示例的方法。
用法:
query.error( err );
参数:此方法接受单个参数,如下所述:
- err:它用于指定错误对象。
返回值:该方法返回查询对象,我们可以在该对象上设置回调函数。
设置 Node.js Mongoose 模块:
步骤 1:使用以下命令创建 Node.js 应用程序:
npm init
步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:
npm install mongoose
项目结构: 项目结构将如下所示:
数据库结构:数据库结构如下所示,以下数据库存在于 MongoDB 中。
示例 1:下面的示例说明了 Mongoose Connection 的基本函数error()方法。在此示例中,我们提供了导致错误的错误字段名称,并且我们使用异步函数来处理 Promise。
文件名: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);
(async () => {
const result = await StudentModel.find(
{ num: "45221" })
.error(new Error("Woop !!, no such field exists"));
console.log(result);
})();
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
(node:18236) UnhandledPromiseRejectionWarning: Error: Woop !!, no such field exists at D:\GeeksforGeeks\Articles\Sakshi\Mongoose Query API .prototype.error()\app.js:21:64
示例 2:下面的示例说明了 Mongoose Connection 的基本函数error()方法。在此示例中,我们没有向导致错误的 update 方法提供要更新的最新值,并且我们使用 then 和 catch 块来处理 Promise。
文件名: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
.updateOne({ name: "45221" })
.error(new Error("Please put the updated values")).then(res => {
console.log(res);
}).catch(err => console.log(err));
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
Error: Please put the updated values
参考:https://mongoosejs.com/docs/api/query.html#query_Query-error
相关用法
- Mongoose Query.prototype.error()用法及代码示例
- Mongoose Query.prototype.exec()用法及代码示例
- Mongoose Query.prototype.explain()用法及代码示例
- Mongoose Query.prototype.elemMatch()用法及代码示例
- Mongoose Query.prototype.equals()用法及代码示例
- Mongoose Query.prototype.estimatedDocumentCount()用法及代码示例
- Mongoose Query.prototype.exists()用法及代码示例
- 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.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()用法及代码示例
注:本文由纯净天空筛选整理自sakshio0hoj大神的英文原创作品 Mongoose Query.prototype.error() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。