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!'
}
]
}