field を持つスキーマがあります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'}})
。それは動作しません。