我已经在我的架构中定义了一个对象数组,现在想要在我的模板中显示对象属性,但却没有知道如何做到这一点。
ingredients: {
type: [Object],
minCount: 1
},
"ingredients.$.name": {
type: String
},
"ingredients.$.amount": {
type: String
}
并尝试在模板
中访问它们<li class="list-group-item">{{ingredients.$.name}} - {{ingredients.$.amount}}</li>
所以,请你帮我解决一下如何在模板中访问它们。
答案 0 :(得分:1)
假设我理解正确并且您在该架构中有一个包含数据的集合,那么您只需要获取该数据(例如,使用名为ingredients
的帮助程序),然后使用#each
你的模板:
{{#each ingredients}}
<li class="list-group-item">{{name}} - {{amount}}</li>
{{/each}}