我正在使用带有meteor-autoform-select2输入字段的 AutoForm。我的架构如下所示:
Data.attachSchema(new SimpleSchema({
title: {
type: String,
label: "Title",
max: 30
},
users: {
type: [String],
autoform: {
type: "select2",
options: function () {
return Users.find({_id: {$ne: Meteor.userId()}}).map(function (user) {
return {label: user.username, value: user._id};
});
}
}
}
}));
,title
以及users
输入字段是必需的。如果我提交带有空输入的表单,则title
输入会出现红色边框并出现错误。但是,这不适用于users
输入字段,即使我可以在控制台中看到正确的错误消息。
为什么?