1
状況
親画面からテンプレートに配列を渡すことができました。 customAttribute
は機能しますが、historyItems
は機能しません。親テンプレートから子テンプレートへ配列を渡す
親-template.html
<template>
<require from="./child-template"></require>
<child-template
historyItems.bind="history[0].HistoryItems"
custom-attribute.bind="history[0].HistoryItems.length">
</child-template>
</template>
子-template.html
<template>
${customAttribute}
${historyItems.length}
${historyItems}
<p repeat.for="item of historyItems">
Foobar
</p>
</template>
子-template.ts
import {autoinject, bindable} from 'aurelia-framework';
@autoinject
export class ChildTemplate {
@bindable customAttribute : string;
@bindable historyItems;
constructor() {
}
}
質問
はどのようにして渡すことができますhistoryItems
アレイ?