gpt4 book ai didi

javascript - 我的 Meteor.users 架构每次都无法通过验证

转载 作者:行者123 更新时间:2023-11-29 16:58:03 26 4
gpt4 key购买 nike

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

我建立了一个简单的架构,其中只有 email是一个非可选值,但尽管如此简单,但每次声称“需要电子邮件”时验证都会失败。

我的模式:

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"})

但是当我运行这个时,会返回一个很大的异常,其中包括:

Exception while invoking method 'registerUser` Error: Email is required

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

Sanitized and reported to the client as: Email is required [400]

我错过了什么?

最佳答案

正如您在 the docs 中看到的那样, user.emails 是一组具有属性 verifiedaddress 的对象。

所以尝试这样的事情:

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

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

'emails.$.verified': {
type: Boolean
},

关于javascript - 我的 Meteor.users 架构每次都无法通过验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30715363/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com