У меня есть схема с полем type: Object
. Но всякий раз, когда я делаю вставку, этот объект пуст.
Вот моя схема
Contacts.attachSchema(new SimpleSchema({
firstName: {
type: String,
},
lastName: {
type: String,
optional: true
},
twitterFriend: { // this field
type: Object,
optional: true
}
}));
Даже если do Contacts.insert({firstName: 'Mustafa', twitterFriend: {test: 'this should be stored'}})
. Это не работает.