Reputation: 327
I have a JavaScript object like this
Object {all: Array[5], cattype: "sometype"}
My question is, how to write cattype in the code below
I do this
{{#each all}}
<li><a href="#{{cattype}}/{{ id }}" >{{{title}}}</a></li>
{{/each}}
This code is working, just cattype is not written. Outside {{#each}} it's working of course.
Thank you very much for your attantion ! :)
Upvotes: 0
Views: 48