gpt4 book ai didi

javascript - 对于数组中的每个项目 {{display item}}

转载 作者:行者123 更新时间:2023-11-30 09:53:02 25 4
gpt4 key购买 nike

我正在尝试访问我的代码中的数组值,以便我可以使用它们,但我不确定如何访问。谢谢

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>

最佳答案

您可以按如下方式定义您的 footerButtons 助手 -

Template.footer.helpers({
footerButtons() {
return [{text: 'NO'}, {text: 'EXTRA'}, {text: 'YES'}];
}
});

然后在您的模板中,您可以访问如下所示的值。

<template name="footer"> 
{{#each footerButtons}}
<h1> <button class="col-xs-2 mainMenu" type="button">{{text}}</button> </h1>
{{/each}}
</template>

关于javascript - 对于数组中的每个项目 {{display item}},我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35347761/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com