handlebars-lang / handlebars.js

Minimal templating on steroids.
http://handlebarsjs.com
MIT License
17.82k stars 2.04k forks source link

My global variable doesn't work inside each / loop #1913

Closed khanifikhsanudin closed 1 year ago

khanifikhsanudin commented 1 year ago
data -> {"message": "Hello World", numList: ["1"]}

{{message}} -> this line will printed "Hello World".
<br>
{{#each numList as |num|}}
    {{num}} {{message}} -> this line only printed "1" and "Hello World" not printed as expected.
{{/each}}

Fiddle: https://jsfiddle.net/apLu36b9/