嗨,我是Stackoverflow的新手,有一个特定的问题,我真的无法理解,请不要对我太苛刻:)
我已经建立了这个项目:
https://cloudfour.com/thinks/the-hidden-power-of-handlebars-partials/
当我运行'gulp html'并提取所有部分时,效果很好。
但是当我尝试执行类似每个功能的把手时,数据不会显示。 例如:
<ul class="people_list">
{{#each people}}
<li>{{this}}</li>
{{/each}}
</ul>
使用数据
{
people: [
"Yehuda Katz",
"Alan Johnson",
"Charles Jolley"
]
}
我想念什么吗?