所以,我刚刚开始了一个流星项目并且已经包含了帐户密码包。该软件包仅支持少量密钥。我想将一个新的SimpleSchema添加到带有更多字段的users集合中。
我不会使用
创建另一个用户集合实例@users = Mongo.Collection('users');
//Error: A method named '/users/insert' is already defined
我可以附加架构,但会强制保留很多字段可选,否则可能无法注册默认包。
我可以添加simpleSchema而不使其他字段可选,但仍能正常登录吗?
或者这种情况还有其他解决方法吗?
提前感谢您的帮助
答案 0 :(得分:-1)
您可以通过以下方式获取用户集合:
@users = Meteor.users;
您可以在collection2包的文档中找到定义用户集合的好例子:https://atmospherejs.com/aldeed/collection2
Schema = {};
Schema.User = new SimpleSchema({
username: {
type: String,
regEx: /^[a-z0-9A-Z_]{3,15}$/
},
emails: {
type: [Object],
// this must be optional if you also use other login services like facebook,
// but if you use only accounts-password, then it can be required
optional: true
},
"emails.$.address": {
type: String,
regEx: SimpleSchema.RegEx.Email
},
"emails.$.verified": {
type: Boolean
},
createdAt: {
type: Date
},
profile: {
type: Schema.UserProfile,
optional: true
},
services: {
type: Object,
optional: true,
blackbox: true
},
// Add `roles` to your schema if you use the meteor-roles package.
// Option 1: Object type
// If you specify that type as Object, you must also specify the
// `Roles.GLOBAL_GROUP` group whenever you add a user to a role.
// Example:
// Roles.addUsersToRoles(userId, ["admin"], Roles.GLOBAL_GROUP);
// You can't mix and match adding with and without a group since
// you will fail validation in some cases.
roles: {
type: Object,
optional: true,
blackbox: true
},
// Option 2: [String] type
// If you are sure you will never need to use role groups, then
// you can specify [String] as the type
roles: {
type: [String],
optional: true
}
});
答案 1 :(得分:-2)
您有三种方法可以适应架构附加到此类集合:
friends
默认为[]
)。每个选项本身都有些有效。选择当前上下文中最强逻辑的内容,以及最让您头疼的事情。
注册时,您是否绝对需要someField
的用户指定值?然后,您必须更新UI以获取此值
someField
的存在是否重要,可以将其初始化为默认对象(空数组null
,0 ...)?然后一个默认值适合,当Collection2清理文档时,它将被添加
以上都不是?可选的。
作为一个有点个人的说明,我更喜欢这种代码:
someUser.friends.forEach(sendGifts);
对此类:
if(someUser.hasOwnProperty('friends')) {//Or _.has(someUser, 'friends') but it sounds sad
someUser.friends.forEach(sendGifts);
}
在第二个代码friends
中是一个可选字段,因此我们不确定它是否存在或未定义。在forEach
上调用undefined
会产生一个很大的错误,因此我们必须首先检查字段是否存在...因此,我建议略微避免一致性的可选字段和简单。