I want to store an array of key value pair objects . I am using meteor and collection2 . I declared the field data type as given below. I want to store the object like
[{key:value,key:value},{key:value,key:value},{key:value,key:value}]
In my database schema i defined the schema like this
Meteor.mytable = new Meteor.Collection2('mytable', {
schema: {
name: {
type: String,
label: "name",
optional:true
},
the_object:{
type: [Object],
label:" Storing the list objects ",
optional:false
},
}
});
and while storing the data at server side i am doing
Meteor.mytable.insert({name:"name",the_object:[{key:value,key:value},{key:value,key:value}]);
But here it is creating an instance which contains only the name field but not the the_object
filed
Thank you
In schema you should have to declare key names. The you can store key value pair object in collection2 schema.
Now you can use insert query as below
I am declaring collection2 in mine code as below, see sample code
mine query as below