我试图访问我的代码中的数组值,以便我可以使用它们,但我不知道如何。感谢
var footerButtons = ['NO', 'EXTRA', 'YES'];
<template name="footer">
{{#each footerButtons}}
<h1>
<button class="col-xs-2 mainMenu" type="button">{{what should go here?}}</button>
</h1>
{{/each}}
</template>
答案 0 :(得分:2)
{{.}}
或{{this}}
。这指的是数组中的当前对象/元素。
答案 1 :(得分:2)
您可以按如下方式定义scala> Uniform[Double](Bounded(2, (0, 4)), 1)
res15: Bounded[Double] = 1.5325899033654382 <- [0.0,4.0]
scala> Uniform[Float](Bounded(2, (0, 4)), 1)
res16: Bounded[Float] = 0.06786823 <- [0.0,4.0]
助手 -
footerButtons
然后在您的模板中,您可以访问如下所示的值。
Template.footer.helpers({
footerButtons() {
return [{text: 'NO'}, {text: 'EXTRA'}, {text: 'YES'}];
}
});