gpt4 book ai didi

javascript - 如何在 Meteor JS 中将数组值加载到模板变量?

转载 作者:行者123 更新时间:2023-12-02 12:40:16 25 4
gpt4 key购买 nike

如何将数组值加载到 Meteor 中的模板变量?请查看下面的代码并建议我该怎么做?

HTML 代码:

 <template name="header">
<div class="header">
{{#each alphabets}}
<div class="alphabets">{{this}}</div>
{{/each}}
</div>
</template>

JS 代码:

 //the below array values are load dynamically above template
var Alphas = ['ALL',
'A', 'B', 'C', 'D','E', 'F',
'G', 'H', 'I', 'J','K', 'L',
'M', 'N', 'O', 'P','Q', 'R',
'S', 'T', 'U', 'V','W', 'X',
'Y', 'Z'
]

Template.header.alphabets = function (i)
{
return Alphas[i];
};

最佳答案

模板 html:

<template name="header">
<div class="header">
{{#each alphabets}}
<div class="alphabets">{{this}}</div>
{{/each}}
</div>
</template>

模板js:

var Alphas = ['ALL',
'A', 'B', 'C', 'D','E', 'F',
'G', 'H', 'I', 'J','K', 'L',
'M', 'N', 'O', 'P','Q', 'R',
'S', 'T', 'U', 'V','W', 'X',
'Y', 'Z'];

Template.header.alphabets = function() {
return Alphas;
};

我测试了这个,它有效。

基本上,您可以像游标一样传递数组,并且每个数组都会以相同的方式迭代它们。

如果数组中有键/值对,您也可以像 mongo 文档一样处理它们。

关于javascript - 如何在 Meteor JS 中将数组值加载到模板变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21775615/

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