gpt4 book ai didi

javascript - mustache 可以迭代顶级数组吗?

转载 作者:IT王子 更新时间:2023-10-29 02:41:13 25 4
gpt4 key购买 nike

我的对象看起来像这样:

['foo','bar','baz']

我想使用 mustache 模板从中生成如下内容:

"<ul><li>foo</li><li>bar</li><li>baz</li></ul>"

但是怎么办?我真的必须先把它弄成这样吗?

{list:['foo','bar','baz']}

最佳答案

你可以这样做......

Mustache.render('<ul>{{#.}}<li>{{.}}</li>{{/.}}</ul>', ['foo','bar','baz']);

它也适用于这样的事情......

var obj = [{name: 'foo'}, {name: 'bar'}];
var tmp = '<ul>{{#.}}<li>{{name}}</li>{{/.}}</ul>';
Mustache.render(tmp, obj);

关于javascript - mustache 可以迭代顶级数组吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6516297/

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