Closed crapthings closed 12 years ago
okay i've done in this way, but is there another solution ?
- paper.nodes.forEach(function(node) {
p= node.title
-});
The solution you gave above is what I would suggest... except you don't need the curly braces
- paper.nodes.forEach(function(node)
p= node.title
- )
If you want each in its own chunk, you can always do:
- paper.nodes.forEach(function(node)
chunk
p= node.title
!= Meteor.ui.chunk(__.chunk.last)
- )
how to get each nodes display on my page ?
i can use above code to show log in console but how to combie a template chunk or a better way to list embed document ?