Mongoose API 的 Mongoose Query API.prototype.projection() 方法用于查询对象。它允许我们设置和配置查询对象的投影。使用此方法我们可以获得现有的投影详细信息,也可以删除现有的投影。让我们通过一个例子来理解projection()方法。
用法:
query.projection( arg );
参数:此方法接受单个参数,如下所述:
- arg: 它用于设置和删除查询对象的投影。它可以指定为对象或 null。
返回值:此方法返回带有当前投影的结果集。
设置 Node.js Mongoose 模块:
步骤 1:使用以下命令创建 Node.js 应用程序:
npm init
步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:
npm install mongoose
项目结构: 项目结构将如下所示:
数据库结构:数据库结构如下所示,以下数据库存在于 MongoDB 中。
示例 1:下面的示例说明了 Mongoose Connection 的基本函数projection()方法。在这个例子中,我们选择了名字当前投影的字段,并使用投影方法,我们以对象的形式获取现有的投影细节。
文件名: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 },
age: { type: Number },
rollNumber: { type: Number },
});
const Student = connectionObject.model('Student', studentSchema);
(async () => {
const result = await Student
.find({ rollNumber: 9 })
.select('name')
.projection();
console.log(result)
})();
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
{ name: 1 }
示例 2:下面的示例说明了 Mongoose Connection 的基本函数projection()方法。在这个例子中,我们选择了年龄当前投影字段并使用投影方法我们将当前投影配置设置为空。
文件名: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 },
age: { type: Number },
rollNumber: { type: Number },
});
const Student = connectionObject.model('Student', studentSchema);
(async () => {
const query = Student
.find({ rollNumber: 178 })
.select('age');
query.projection(null);
console.log(query.projection());
})();
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
{}
参考:https://mongoosejs.com/docs/api/query.html#query_Query-projection
相关用法
- Mongoose Query.prototype.pre()用法及代码示例
- Mongoose Query.prototype.post()用法及代码示例
- 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()用法及代码示例
- Mongoose Query.prototype.lt()用法及代码示例
- Mongoose Query.prototype.lte()用法及代码示例
注:本文由纯净天空筛选整理自sakshio0hoj大神的英文原创作品 Mongoose Query.prototype.projection() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。