Return array item by index in a meteor spacebars t

2019-04-20 09:00发布

问题:

I want to access the first item of an array inside a meteor template, I'm using this syntax :

<p>{{array[0]}}</p>

However it doesn't seem like it's working. I don't want to iterate through values using {{#each}}, just pick the first one from the array.

回答1:

This is just a problem of syntax, the correct one is the following :

<p>{{array.[0]}}</p>

Notice the . dot between the array property and the brackets (array indexing) notation ?

Here is the (hidden) docs for this :

https://github.com/meteor/meteor/wiki/Using-Blaze#dotted-helpers-with-numeric-indices