我希望能够从用户列表中选择多个用户。
我是用户collection2
,simple-schema
并且autoform
。
我想为此生成一个简单的 quickForm 。这是我的简单模式:
Schemas.Item = new SimpleSchema({
name: {
type: String,
label: "Name",
max: 100
},
userIds: {
type: [String],
regEx: SimpleSchema.RegEx.Id
}
});
查看autoform docs,我注意到我想要一个选择视图,所以我需要传递选项。
我希望能够在我的架构中做到这一点!
userIds: {
type: [String],
regEx: SimpleSchema.RegEx.Id
options: function() {
// return users with {value:_id, label:username}
}
}
否则,我必须生成一个带有 quickFormFields 的模板才能传入选项。
只是为了堆积东西,不应该有任何重复的用户ID......
谢谢你的帮助