2
ここで、testメソッド内のステートメントは複数回呼び出されます。なぜこうなった? DOMはAngularJS2によって複数回再現されますか?{{call()}}は、メソッドブロックを複数回実行しますか?
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `<div>Method Call {{test()}}</div>>`
})
export class AppComponent {
name = 'Angular';
test() {
console.log("Test is called");
}
}
hmm!変更検出とは何ですか?もしあなたが参考文献を提供することで私を助けることができたら? :) –
http://blog.thoughtram.io/angular/2016/02/22/angular-2-change-detection-explained.html –