


This article mainly introduces to you the solution to the problem that unique settings in mongoose database do not take effect, as well as examples of how to remove unique restrictions in Mongoose. The article introduces it in detail through sample code. Friends who need it can refer to it. I hope Can help everyone.
Preface
unique is a member of schema constraint verification. Its main function is to make the value of a certain field unique (cannot be repeated)
To maintain the uniqueness of fields, use type values: {type:String,unique:true,dropDups: true}
Note: Once mongoose modifies the data storage mechanism, the database must be restarted. Many novices have this reason when setting some properties does not take effect
The restart mentioned here is not simply closing the mongoose database server and reopening it, but first deleting the entire database and then restarting the database service
Simple schema special usage example
//导入模块 var mongoose = require('mongoose'); //连接数据库 mongoose.connect('mongodb://localhost/itheima'); //创建schema //schema第一个参数是我们自定义的数据类型 第二个参数是管理schema默认的数据类型 var studentSchema = mongoose.Schema({ name:{type:String,required:true},//数据类型为string,不能非空 age:{type:Number,default:18},//数据类型为string,默认值18 study_id:{type:Number,select:true},//学号,默认查询字段 address:{type:String,lowercase:true},//地址,默认小写 email:{type:String,match:RegExp(/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(.[a-zA-Z0-9_-])+/)},//邮箱,正则表达式验证 phone:{type:String,unique:true,dropDups: true}//电话号码唯一性 },{ versionKey: false,//去掉版本锁 __v0 timestamps: { createdAt: 'createTime', updatedAt: 'updateTime' }//自动管理修改时间 }); //创建model var student = mongoose.model('student',studentSchema); //创建Entity var zhangsan = new student({ name:'zhangsan',//名字必须要有,否则会报错: name: Path `name` is required. address:'ZhongLiang',//字符串都会变成小写 email:'a12345@qq.com',//邮箱格式不对,添加会报错 Path `email` is invalid (a12345qq.com). study_id:2017001, phone:'123456789'//在添加唯一性字段时,mongoose会先查询数据库所有的phone值,一旦发现该值已存在则会报错 }); //添加数据 student.create(zhangsan,function(err){ if(err){ throw err; } console.log('插入成功' + zhangsan); });
Mongoose removes unique restrictions
The email in the program initially set the unique restriction, resulting in emails that cannot be repeated in this collection Inserted, now want to remove the unique restriction.
db.your_collection.dropIndexes();
Related recommendations:
Two methods for mongoose to update objects
Detailed explanation of Mongoose’s virtual field query implementation method
Basic tutorial on installing and using Mongoose with Node.js to operate MongoDB_node.js
The above is the detailed content of How to solve the problem that unique setting in mongoose does not take effect. For more information, please follow other related articles on the PHP Chinese website!

哈医大临床药学就业前景如何尽管全国就业形势不容乐观,但药科类毕业生仍然有着良好的就业前景。总体来看,药科类毕业生的供给量少于需求量,各医药公司和制药厂是吸纳这类毕业生的主要渠道,制药行业对人才的需求也在稳步增长。据介绍,近几年药物制剂、天然药物化学等专业的研究生供需比甚至达到1∶10。临床药学专业就业方向:临床医学专业学生毕业后可在医疗卫生单位、医学科研等部门从事医疗及预防、医学科研等方面的工作。就业岗位:医药代表、医药销售代表、销售代表、销售经理、区域销售经理、招商经理、产品经理、产品专员、护

MySQL中unique索引的使用技巧与常见问题解答MySQL是一种流行的关系型数据库管理系统,在实际应用中,唯一索引(uniqueindex)在数据表设计中起着至关重要的作用。唯一索引能够确保表中某一列的数值唯一,避免出现重复数据。本文将介绍MySQL中unique索引的使用技巧以及一些常见问题的解答,并提供具体的代码示例来帮助读者更好地理解。1.创建

最近有小伙伴反应win10镜像文件该如何下载,因为市面的镜像文件多如牛毛,想找到正规的文件下载,这可怎么办呢?今天小编带来了下载镜像的链接,详细的解决步骤,具体的一起来看看吧。win10镜像快速下载安装教程下载链接>>>系统之家Ghostwin101909镜像64位版v2019.11<<<>>>Win10镜像64位v2019.07<<<>>>Win10镜像32位v2019.07<<<1、通过网络检索

如何清理temp文件夹随着我们在电脑上的使用,临时文件(temp文件)会逐渐积累。这些临时文件是在我们使用计算机时生成的,如浏览网页时的缓存文件、软件安装时的临时文件等。长时间不清理temp文件夹可能会占据大量磁盘空间,影响电脑运行速度。因此,定期清理temp文件夹是维护电脑性能的必要步骤。下面,我们将介绍清理temp文件夹的一些简单方法。方法一:手动清理t

Win10系统如何重置?现在有很多小伙伴都是喜欢使用Win10系统的电脑,而在使用电脑的过程中难免会遇到一些无法解决的问题,这时候可以尝试去重置系统,那么应该如何操作呢?下面就跟着小编一起来看Win10系统重置的教程吧,有需要的用户可不要错过。 Win10系统重置的教程 1、点击windows,选择设置。 2、点击更新和安全。 3、选择恢复。 4、右侧点击开始,重置此电脑。以上就是【Win10系统如何重置-Win10系统重置的教程】全部内容了,更多精彩教程尽在本站!

如何查看win11电脑配置?win11系统是一款非常实用的电脑操作系统版本,该版本为用户们提供了丰富的功能,让用户们能够有更好的电脑操作体验,那么很多使用电脑的小伙伴们都很好奇自己电脑的具体配置,在win11系统中该如何进行这一操作呢?很多小伙伴不知道怎么详细操作,小编下面整理了win11电脑配置查看教程,如果你感兴趣的话,跟着小编一起往下看看吧!win11电脑配置查看教程1、点击下方任务栏的windows图标或者按下键盘“windows键”打开开始菜单。2、在开始菜单中找到“设置”或“sett

重装系统时环境检测未通过如何解决需要进行改写的原因是:手机中毒了,可以安装手机管家等杀毒软件进行杀毒2、手机内部存储了许多垃圾文件,导致手机运行内存被占用。只需清理手机缓存即可解决这个问题3、手机内存被保存的软件和文件占用太多,需要经常删除不需要的文件和软件没问题,只要你的硬件配置符合安装要求,你可以直接使用新的系统盘重新安装系统!你可以使用U盘或者硬盘来进行安装,速度非常快。但是关键是要使用兼容性好的系统盘(支持IDE、ACHI、RAID模式的安装),并且能够自动永久激活,已经经过验证的。这样

MySQL数据库中的unique索引:用法与注意事项MySQL是一种非常流行的开源关系型数据库管理系统,可以用于存储和管理大量的数据。在MySQL中,我们经常会使用索引来提高数据的检索和插入效率。其中,unique索引是一种特殊的索引类型,它要求索引列的值在整个表中必须是唯一的。本文将介绍MySQL数据库中unique索引的用法与注意事项,并提供具体的代码示


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
