控制台中的验证错误,但select2 Meteor AutoForm输入字段周围没有红色边框

时间:2015-10-08 07:37:19

标签: javascript meteor meteor-autoform simple-schema

我正在使用带有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输入字段,即使我在控制台中可以看到正确的错误消息。

为什么?

0 个答案:

没有答案