用于规范化数据的猫鼬吸气剂/设定器

时间:2012-12-24 17:00:52

标签: node.js mongodb express mongoose normalization

我的User架构有一个username字段。我希望此字段区分大小写,以便用户可以注册BobDylan等名称。但是,我需要我的架构来验证新条目,以检查是否存在重复项,如bobdylan所示。

我的研究告诉我,我应该在架构中创建一个额外的字段来存储小写/大写版本,以便我可以轻松检查它是否是唯一的。我的问题是,如何使用Mongoose API实现这一目标?

我尝试使用set函数,例如:

UserSchema.path('username_lower_case').set(function(username_lower_case) {
  return this.username.toLowerCase()
});

但是,此功能似乎没有运行。我基本上需要告诉username_lower_caseusername是什么,但是小写。

1 个答案:

答案 0 :(得分:10)

一种方法是使用预保存挂钩来完成它。

UserSchema.pre('save', function (next) {
    this.username_lower_case = this.username && this.username.toLowerCase();
    next();
});

另一种方法是使username成为虚拟:

UserSchema.virtual('username').set(function (value) {
    this.username_raw = value;
    this.username_lower_case = value && value.toLowerCase();
}).get(function () {
    return this.username_raw;
});