在架构中将标签设置为false不起作用

时间:2016-03-22 01:01:32

标签: meteor meteor-autoform simple-schema

我正在尝试删除架构中的标签。每当我将其设置为false时,它就会出错或无效。

Schema.User = new SimpleSchema({
    classifications: {
        type: Schema.Classification,
        optional: true,
        label: false
    }
});

1 个答案:

答案 0 :(得分:1)

label是一个字符串。将其设置为字符串或从架构中省略它:

Schema.User = new SimpleSchema({
    classifications: {
        type: Schema.Classification,
        optional: true
    }
});