本文主要為大家介紹了關於mongoose資料庫設定unique不生效問題的解決方法,以及Mongoose如何移除unique限制的方法範例,文中透過範例程式碼介紹的非常詳細,需要的朋友們可以參考借鑒,下面隨著小編來一起學習學習吧。
前言
unique屬於schema約束驗證中的一員,他的功能主要就是讓某一個欄位的值具有唯一性(不能重複)
保持欄位的唯一性使用 type值:{type:String,unique:true,dropDups: true}
注意:mongoose一旦修改了資料儲存的機構,資料庫一定要重啟,很多新手在設定一些屬性不生效時都是這個原因
這裡說的重啟,不是簡單的關閉mongoose資料庫伺服器重新打開,而是先將該資料庫整個刪除,然後再重啟資料庫服務
簡單的schema特殊用法範例
//导入模块 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 移除unique的限制
程式中email最開始設定了unque限制,導致email在此collection中無法重複插入,現在想要移除unique限制。
db.your_collection.dropIndexes();
相關推薦:
Node.js的MongoDB驅動Mongoose基本上使用教學_node.js
以上是詳解關於mongoose設定unique不生效問題的解決及如何移除unique的限制的詳細內容。更多資訊請關注PHP中文網其他相關文章!