gpt4 book ai didi

json - 用 mustache 遍历 JSON 数组

转载 作者:行者123 更新时间:2023-12-03 22:46:57 24 4
gpt4 key购买 nike

我是 Mustache 的新手,请耐心等待:)

我的 JSON 中有一个数组

"prop":{"brands":["nike","adidas","puma"]}

如果我有这样的模板
{{#prop}}
<b>{{brands}}</b>
{{prop}}

我想得到类似的东西:
<b>nike</b>
<b>adidas</b>
<b>puma</b>

我知道数组中的元素不是哈希键值对,但是我想知道是否有 mustache 可以遍历元素。

谢谢!

最佳答案

这是一个工作 fiddle :http://jsfiddle.net/Qa4UX/

基本上,您需要遍历品牌数组。
由于您的数组是原始数组并且内部没有对象,因此您必须像这样引用每个字符串:

{{#props}}
<ul>
{{#brands}}
<li>
{{#.}}
<b>{{.}}</b>
{{/.}}
</li>
{{/brands}}
</ul>
{{/props}}

您还可以在此处找到更多示例: https://github.com/janl/mustache.js#mustachejs---logic-less-mustache-templates-with-javascript

关于json - 用 mustache 遍历 JSON 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17283776/

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