這次帶給大家移除unique限制的方法,移除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();
我相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是移除unique限制的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!