12

我有一个带有字段的架构type: Object。但是每当我进行插入时,该对象都是空的。

这是我的架构

Contacts.attachSchema(new SimpleSchema({
    firstName: {
        type: String,

    },
    lastName: {
        type: String,
        optional: true
    },
    twitterFriend: { // this field
        type: Object,
        optional: true
    }
}));

即使做Contacts.insert({firstName: 'Mustafa', twitterFriend: {test: 'this should be stored'}})。这没用。

4

1 回答 1

20

对于您设置的任意子模式的对象blackbox: true

Contacts.attachSchema(new SimpleSchema({
    firstName: {
        type: String,

    },
    lastName: {
        type: String,
        optional: true
    },
    twitterFriend: { // this field
        type: Object,
        optional: true,
        blackbox: true
    }
}));

请参阅 SimpleSchema文档以供参考。

于 2015-04-06T04:29:26.670 回答