gpt4 book ai didi

meteor - handlebars.js “each” 循环在另一个 “each” 循环内 3

转载 作者:行者123 更新时间:2023-12-03 11:05:22 25 4
gpt4 key购买 nike

假设我想建立一个动态表。我如何在每个内部运行每个。如果表示当前项目的唯一变量是 this .

   {{#each by_width}}
{{#each by_height}}
{{this}} // how do refer to this from the outer loop?
{{/each}}
{{/each}}

最佳答案

您可以使用 ../访问 Handlebars 模板中的父级:

{{#each by_width}}
{{#each by_height}}
w: {{../this}}
h: {{this}}
{{/each}}
{{/each}}

那当然假设 by_height位于 by_width 的每个元素内,如果它们都在顶层,那么您需要另一个 ../ :
{{#each by_width}}
{{#each ../by_height}}
w: {{../this}}
h: {{this}}
{{/each}}
{{/each}}

演示: http://jsfiddle.net/ambiguous/PNTXw/

关于meteor - handlebars.js “each” 循环在另一个 “each” 循环内 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14059157/

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