【发布时间】:2015-10-29 07:40:30
【问题描述】:
我在我的架构中定义了一个对象数组,现在想在我的模板中显示对象属性,但不知道如何做。
ingredients: {
type: [Object],
minCount: 1
},
"ingredients.$.name": {
type: String
},
"ingredients.$.amount": {
type: String
}
并尝试在模板中访问它们
<li class="list-group-item">{{ingredients.$.name}} - {{ingredients.$.amount}}</li>
所以你能帮我如何在模板中访问它们。
【问题讨论】:
标签: javascript meteor meteor-autoform