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 に答える