I just answered a similar question. The important part is the helper that iterates over the keys. However since that gives you an array of strings then you also want to be able to get the value.
Template.myTemplate.helpers({
keys(){
return Object.keys(this); // returns an array of strings
},
value(){
return Template.parentData()[this]; // look up the hierarchy to get the parent object then select the data for the current key
}
});
So, if I remove blaze templates, I can basically replace this methodology with React or Angular? Am I correct in that assumption (being new to Meteor)?
That is correct. React, Angular, and Blaze are each alternatives for how you build your “view” layer. There should be no reason to ever use more than one of these at a time (excepting perhaps temporarily during a transition from one to another).