2
這裏測試方法中的語句被稱爲多次。這是爲什麼發生? 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");
}
}
嗯!什麼是變化檢測?如果你能通過提供一些參考來幫助我? :) –
http://blog.thoughtram.io/angular/2016/02/22/angular-2-change-detection-explained.html –