15
Biểu thức ___ đã thay đổi sau khi được kiểm tra
Tại sao thành phần trong plunk đơn giản này @Component({ selector: 'my-app', template: `<div>I'm {{message}} </div>`, }) export class App { message:string = 'loading :('; ngAfterViewInit() { this.updateMessage(); } updateMessage(){ this.message = 'all done loading :)' } } ném: NGOẠI TRỪ: Biểu thức 'Tôi {{message}} trong Ứng dụng @ 0: …
286
typescript
angular