我想在另一個裏面使用迭代助手。但內部幫手不輸出任何內容。Handlebars嵌套迭代內置助手 - 空輸出
這就是車把模板:
{{#people}}
<h4>{{firstName}} {{lastName}}</h4>
{{#students}}
<h3>{{firstName}} {{lastName}}</h3>
{{/students}}
{{/people}}
這是我的JSON:
{
people : [
{ firstName: "Yehuda", lastName: "Katz" },
{ firstName: "Carl", lastName: "Lerche" },
{ firstName: "Alan", lastName: "Johnson" }
],
students: [
{ firstName: "Mike", lastName: "Smith" },
{ firstName: "Dan", lastName: "Knight" },
{ firstName: "Griffin", lastName: "Smith" }
]
}
請告訴我這個問題的解決方案? 嘗試代碼在線和快速瀏覽:http://tryhandlebarsjs.com/
喜IM在店項目。我有3類男士服裝。 即時通訊嘗試爲每個類別添加一個div中的子類別。 上面的例子如果和我的項目一樣。 –