我有一个带有字段的架构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'}})
。这没用。