2

我正在使用 collection2 包,如下所示:https ://github.com/aldeed/meteor-collection2

我设置了一个简单的模式,其中 onlyemail是一个非可选值,但尽管如此简单,但每次声称“需要电子邮件”时验证都会失败。

我的架构:

Schema.UserProfile = new SimpleSchema({
  firstName: {
        type: String,
        regEx: /^[a-zA-Z-]{2,25}$/,
        optional: true
  },
  lastName: {
        type: String,
        regEx: /^[a-zA-Z]{2,25}$/,
        optional: true
  },
  birthday: {
    type: Date,
        optional: true
  },
    likes: {
        type: [String],
        optional: true
    }
})

Schema.User = new SimpleSchema({
  username: {
    type: String,
    regEx: /^[a-z0-9A-Z_]{3,15}$/,
            optional: true
  },
  email: {
    type: String,
            regEx: SimpleSchema.RegEx.Email
  },
  verified: {
    type: Boolean,
            optional: true
  },
  createdAt: {
    type: Date,
            optional: true
  },
  profile: {
    type: Schema.UserProfile,
    optional: true
  },
  services: {
    type: Object,
    optional: true,
    blackbox: true
  }
})

我是这样设置的:

Meteor.users.attachSchema(Schema.User)

为了检查它,我硬编码了一个值来添加一个具有完美电子邮件地址的用户:

Accounts.createUser({email: "fdfs@fdsfs.com"})

但是当我运行这个时,会返回一个大异常,除其他外说:

调用方法“registerUser”时出现异常错误:需要电子邮件

在 getErrorObject<packages/aldeed:collection2/collection2.js:369:1>

已清理并报告给客户:需要电子邮件 [400]

我错过了什么?

4

1 回答 1

5

正如您在文档中看到的,user.emails是一个具有属性的对象数组verifiedaddress

所以尝试这样的事情:

emails: {
    type: [Object],
    optional: true
},

'emails.$.address': {
    type: String,
    regEx: SimpleSchema.RegEx.Email
},

'emails.$.verified': {
    type: Boolean
},
于 2015-06-08T17:32:37.313 回答