当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Mongoose SchemaType.prototype.unique()用法及代码示例


Mongoose 是针对 node.js 环境的 MongoDB 对象建模和处理。 Mongoose SchemaType 独特的属性允许我们在 mongoose 路径上创建我们不希望在文档中重复的唯一索引。让我们通过一些例子来更多地了解这一点。

创建节点应用程序并安装 Mongoose:

步骤1:使用以下命令创建节点应用程序:

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

步骤 2:创建 ReactJS 应用程序后,使用以下命令安装所需的模块:

npm install mongoose

项目结构: 它将如下所示。

示例 1:在此示例中,我们将在模式路径电子邮件上创建唯一索引,以便用户无法保存具有相同电子邮件的文档。

文件名:main.js

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')); 
  
const personSchema = new mongoose.Schema({ 
    name: { 
        type: String, 
    }, 
    email: { 
        type: String, 
        unique: true
    } 
}, { strict: true }); 
  
const Person = mongoose.model('Person', personSchema); 
const person1 = new Person({ name: 'John',  
    email: 'john@test.com' }); 
const person2 = new Person({ name: 'Doe',  
    email: 'john@test.com' }); 
  
(async function () { 
    await person1.save(); 
    await person2.save(function (err) { 
        console.log(err) 
    }); 
  
    const persons = await Person.find() 
    console.log(persons) 
})()

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

node main.js

输出:

示例 2:在此示例中,我们将在架构路径 “name” 上创建唯一索引,以便用户无法保存同名文档。

文件名:main.js

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')); 
  
const personSchema = new mongoose.Schema({ 
    name: { 
        type: String, 
        unique: true
    }, 
    email: { 
        type: String, 
    } 
}, { strict: true }); 
  
const Person = mongoose.model('Person', personSchema); 
const person1 = new Person({ name: 'John',  
    email: 'john@test.com' }); 
const person2 = new Person({ name: 'John',  
    email: 'doe@test.com' }); 
  
(async function () { 
    await person1.save(); 
    await person2.save(function (err) { 
        console.log(err) 
    }); 
  
    const persons = await Person.find() 
    console.log(persons) 
})()

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

node main.js

输出:

参考:https://mongoosejs.com/docs/api/schematype.html#schematype_SchemaType-unique



相关用法


注:本文由纯净天空筛选整理自dishebhbhayana大神的英文原创作品 Mongoose SchemaType.prototype.unique() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。