2015-05-06 169 views
3

我想從流量計幫助器生成ul li標記。流星:如何從流星幫助器打印陣列

結果:

<ul> 
    <li>aaa</li> 
    <li>bbb</li> 
</ul> 

我的模板代碼是

<template name="Mytempalte"> 
    <ul> 
    {{#each Name}} 
     ??? 
    {{/each}} 
    </ul> 
</template> 

和我的助手返回一個數組。

Template.Mytempalte.helpers({ 
    Name : function(){ 
    return ["aaa","bbb"]; 
    } 
}); 
+2

的可能重複[如何加載陣列值流星JS給模板變量?](http://stackoverflow.com/questions/21775615/how-to-load-array-values-to-template-variable-in-meteor-js) – ekuusela

+0

@ekuusela謝謝 –

+0

另請參見:[流星Handlebars:如何訪問一個普通數組?](http://stackoverflow.com/q /1439597分之21234947) – SylvainB

回答

7

只需使用{{this}}

,而不是你???