1

我正在尝试删除架构中的标签。每次我将其设置为 false 时,它​​都会出错或什么也不做。

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

1 回答 1

1

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

Schema.User = new SimpleSchema({
    classifications: {
        type: Schema.Classification,
        optional: true
    }
});
于 2016-03-22T02:16:23.997 回答