2017-12-07 4 views

答えて

0

を解決しました。問題は、「列」がAureliaクラスで定義されていることでした。しかし、Ajaxのコールバックでは "this"は定義されていません。解決策はバインドすることでした:

defineRepeater() { 
    let __this = this; 
    // initialize the repeater 
    ($('#myRepeater') as any).repeater({ 
     //init stuff 
     dataSource: __this.customDataSource.bind(__this); 
    }); 
} 

customDataSource(options: any, callback) { 
    let __this = this; 
    ... 
    columns: __this.columns 
    ... 
} 
関連する問題