Theo tài liệu về Meteor , một cái gì đó như thế này có thể hoạt động:
Meteor.publish('family', function(famId) {
return Families.find(famId, {
fields : {
"family.relation" : 0 //Exclude family.relation from the sent data
}
});
});
Theo tài liệu về Meteor , một cái gì đó như thế này có thể hoạt động:
Meteor.publish('family', function(famId) {
return Families.find(famId, {
fields : {
"family.relation" : 0 //Exclude family.relation from the sent data
}
});
});