Mongoose API 的 SchemaType.prototype.set() 函数用于允许我们在数据存储在 MongoDB 之前或执行查询之前转换或操作数据
用法:
SchemaType.prototype.set()
参数:它接受如上所述和如下所述的以下参数:
- fn:它是一个对数据执行某些操作并返回转换后的值的函数。
返回类型:它返回 SchemaType 对象作为响应。
设置 Node.js Mongoose 模块:
步骤 1:使用以下命令创建 Node.js 应用程序:
npm init
步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:
npm install mongoose
下面的示例将演示 Mongoose SchemaType.prototype.set() 方法。
示例 1:在此示例中,我们将创建一个 setter,允许我们在将名称存储到数据库之前将其转换为大写。
Javascript
const mongoose = require('mongoose')
// Database 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'));
function toUpper(v) {
return v.toUpperCase();
}
const personSchema = new mongoose.Schema({
name: {
type: String,
set: toUpper
},
age: {
type: Number,
}
});
const personsArray = [
{
name: 'Luffy',
age: 19
},
{
name: 'Nami',
age: 30
},
{
name: 'Zoro',
age: 35
}
]
const Person = mongoose.model('Person', personSchema);
(async () => {
await Person.insertMany(personsArray);
const res = await Person.find();
console.log({ res });
})()
运行应用程序的步骤:从项目的根目录使用以下命令运行应用程序:
node main.js
输出:
使用 MongoDB Compass 的数据库的 GUI 表示:
示例 2:在此示例中,我们将创建一个 setter,允许我们在将年龄存储到数据库之前将其转换为数字。
Javascript
const mongoose = require('mongoose')
// Database 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'));
function helper(val) {
if (typeof val === 'string') {
val = Number(val)
}
return val;
}
const personSchema = new mongoose.Schema({
name: {
type: String,
},
age: {
type: Number,
set: helper
}
});
const personsArray = [
{
name: 'Luffy',
age: '19'
},
{
name: 'Nami',
age: '30'
},
{
name: 'Zoro',
age: '35'
}
]
const Person = mongoose.model('Person', personSchema);
(async () => {
await Person.insertMany(personsArray);
const res = await Person.find();
console.log({ res });
})()
运行应用程序的步骤:从项目的根目录使用以下命令运行应用程序:
node main.js
输出:
使用 MongoDB Compass 的数据库的 GUI 表示:
参考: https://mongoosejs.com/docs/api/schematype.html#schematype_SchemaType-set
相关用法
- Mongoose SchemaType.prototype.select()用法及代码示例
- Mongoose SchemaType.prototype.ref()用法及代码示例
- Mongoose SchemaType.prototype.default()用法及代码示例
- Mongoose SchemaType.prototype.immutable()用法及代码示例
- Mongoose SchemaType.prototype.unique()用法及代码示例
- Mongoose SchemaType.prototype.validate()用法及代码示例
- Mongoose SchemaType.prototype.get()用法及代码示例
- Mongoose SchemaType.prototype.text()用法及代码示例
- Mongoose SchemaType.prototype.required()用法及代码示例
- Mongoose SchemaType.prototype.transform()用法及代码示例
- Mongoose SchemaType.prototype.index()用法及代码示例
- Mongoose Schema Connection.prototype.asPromise()用法及代码示例
- Mongoose Schema Connection.prototype.dropCollection()用法及代码示例
- Mongoose Schema.prototype.virtual()用法及代码示例
- Mongoose Schema Connection.prototype.set()用法及代码示例
- Mongoose Schema Connection.prototype.dropDatabase()用法及代码示例
- Mongoose Schema.prototype.plugin()用法及代码示例
- Mongoose Schema Connection.prototype.close()用法及代码示例
- Mongoose Schema.prototype.static()用法及代码示例
- Mongoose Schema Connection.prototype.useDb()用法及代码示例
- Mongoose Schema.prototype.pre()用法及代码示例
- Mongoose countDocuments()用法及代码示例
- Mongoose deleteMany()用法及代码示例
- Mongoose deleteOne()用法及代码示例
- Mongoose estimatedDocumentCount()用法及代码示例
注:本文由纯净天空筛选整理自dishebhbhayana大神的英文原创作品 Mongoose SchemaType.prototype.set() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。