Meteor data context, passing array into each Spacebars loop
问题 In this Example 2 -- " Passing a data context " JS Template.overview.helpers({ users: [ { name: 'David' }, { name: 'Shaune' } ] }); HTML <template name="overview"> {{> userList users}} </template> <template name="userList"> {{#each this}} {{name}}<br> {{/each}} </template> Result David Shaune My goal is to pass an array of template names into Template.overview where users is, like so: <template name="overview"> {{#each templateArray }} {{> userList this }} {{/each}} </template> Where