我正在使用如下所示的collection2包:https://github.com/aldeed/meteor-collection2
我已经设置了一个简单的架构,其中只有email
是一个非可选值,但是尽管如此简单,每次声明“#34;电子邮件是必需的"”时,验证都会失败。 / p>
我的架构:
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时出现异常错误:需要电子邮件
at getErrorObject
<packages/aldeed:collection2/collection2.js:369:1>
清理并向客户报告:需要电子邮件[400]
我错过了什么?
答案 0 :(得分:5)
正如您在the docs中所看到的,user.emails
是一个包含属性verified
和address
的对象数组。
所以尝试这样的事情:
emails: {
type: [Object],
optional: true
},
'emails.$.address': {
type: String,
regEx: SimpleSchema.RegEx.Email
},
'emails.$.verified': {
type: Boolean
},