【发布时间】:2018-06-22 15:04:58
【问题描述】:
我正在使用 mustache 进行模板渲染,我遇到了这种情况:
JSON
{
"header": "Colors",
"colors": ["red", "green", "blue"]
}
小胡子模板
<h1>{{header}}</h1>
<ul>
{{#colors}}
<li>{{???}}</li>
{{/colors}}
</ul>
HTML
呈现的 HTML 应该是
<h1>Colors</h1>
<ul>
<li>red</li>
<li>green</li>
<li>blue</li>
</ul>
{{???}} 应该是什么?我试过{{this}},{{colors}},{{color}},到目前为止都没有成功。
您可以在他们的demo 上使用小胡子。
【问题讨论】:
-
他们的github page 说
{{ . }}。 Mustache 绝对是一种奇怪的模板语言
标签: javascript html json mustache