Created
January 6, 2015 11:08
-
-
Save sabrinaluo/8bd89b0e509c7a73f968 to your computer and use it in GitHub Desktop.
handlebars.js array index
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{#each data}} | |
<div>{{@index}}</div> <!-- start from 0--> | |
<div>{{this}}</div> <!-- "aa"--> | |
{{/each}} | |
<script> | |
var data = ["aa","bb"] | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment