有没有办法在 Ember.js模板中做类似的事情?
{{someObject.someArray[0].arrayPropery}}
当对象结构如下所示:
someObject: {
someArray: [
{
arrayProperty: 'Show me in template!'
}
]
}
有没有办法在 Ember.js模板中做类似的事情?
{{someObject.someArray[0].arrayPropery}}
当对象结构如下所示:
someObject: {
someArray: [
{
arrayProperty: 'Show me in template!'
}
]
}