在模式中将标签设置为 false 不起作用
Setting label to false in schema not working
我正在尝试删除架构中的标签。每次我将其设置为 false 时,它都会出错或什么都不做。
Schema.User = new SimpleSchema({
classifications: {
type: Schema.Classification,
optional: true,
label: false
}
});
label
是一个字符串。将其设置为字符串或从架构中省略它:
Schema.User = new SimpleSchema({
classifications: {
type: Schema.Classification,
optional: true
}
});
我正在尝试删除架构中的标签。每次我将其设置为 false 时,它都会出错或什么都不做。
Schema.User = new SimpleSchema({
classifications: {
type: Schema.Classification,
optional: true,
label: false
}
});
label
是一个字符串。将其设置为字符串或从架构中省略它:
Schema.User = new SimpleSchema({
classifications: {
type: Schema.Classification,
optional: true
}
});