Just wondering when rendering a list of items.
Is it best for the performance to use Meteor.RenderList and Meteor.Render, or should I try to use Templates as much as possible?
Just wondering when rendering a list of items. Is it best for the performance
Share
i use Template {{#each}} and Meteor.render with a backbone router.
i make a function wrap Meteor.render like this
then inside backbone router it looks like
and a page-home.html include template and {{#each}} to get my list.
i want to know how people deal page Meteor.render/Meteor.renderList with routing too.