gpt4 book ai didi

json - 带有 Handlebars 模板的嵌套 {{each}} 循环

转载 作者:行者123 更新时间:2023-12-04 03:05:39 26 4
gpt4 key购买 nike

我试图迭代一个对象数组,以便使用数组结构内的每个循环将它们的值放入 Handlebars 模板中。在这里你可以看到数组:

var datosSensores = [    
{
name:'John Pinard',
email:'jp@aol.com',
ph: [
'7.80',
'7.90',
'7.60',
fecha: [
'2016-06-20 09:00',
'2016-06-21 10:00'
],

],

}
];

如你所见,如果已经尝试过每个循环:

{{#each ph}}
....
.....
{{#each ph.fechaPH}}
{{this.fechaPH}} //This would be the value of each DATE in the array
{{/each}}

{{/each}}

我不知道如何解决它或我做错了什么。感谢您对此问题的任何评论非常感谢!

最佳答案

您几乎使用了正确的语法:

{{#each ph}}
....
.....
{{#each fecha}}
{{this}} //This would be the value of each DATE in the array
{{/each}}

{{/each}}

当您在 #each 循环中时,此对象将成为“根”节点,因此您无需命名 ph.fecha 而只需命名 fecha,因为 ph 是根。

[编辑] :我已更改名称 fechaPH 在您的示例中不存在,它是 fecha。

关于json - 带有 Handlebars 模板的嵌套 {{each}} 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44805977/

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