gpt4 book ai didi

string - 如何使用Handlebars.js显示字符串列表

转载 作者:行者123 更新时间:2023-12-04 13:19:47 25 4
gpt4 key购买 nike

我有一个要与Handlebars.js显示的字符串列表

到目前为止,这似乎是不可能的,尽管这似乎是荒谬的。
product对象的示例是:

"product": {
"name": "top TP-209-NAV",
"category": "Top",
"brand": "Living Dolls",
"description": "Fabric : Navy-white stretch cotton Long sleeves top (can be worn as dress)",
"price": "23.0",
"tags": [
"Slips on",
" stretch cotton",
" long sleeves"
],
"image1": {
"src": "http://www.livingdolls-closet.com/media/catalog/product/cache/1/image/9df78eab33525d08d6e5fb8d27136e95/T/P/TP-209-NAV-1-living-dolls-top_1.jpg",
"ratio": 1.5
}
},

我想遍历并显示 tags列表中的项目。

当我做这样的事情时,我可以看到适当数量的逗号,表明该列表正在被迭代,但是我无法弄清楚如何显示实际的标签项。
{{#product.tags}}<a href="">{{val}}</a>,  {{/product.tags}} 

最佳答案

我只需要使用each帮助器即可。

{{#each product.tags}}<a href="">{{this}}</a>, {{/each}}

关于string - 如何使用Handlebars.js显示字符串列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16344179/

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