当前位置: 首页 > 编程笔记 >

Angular 2 OnChanges

鲜于勇
2023-03-14
本文向大家介绍Angular 2 OnChanges,包括了Angular 2 OnChanges的使用技巧和注意事项,需要的朋友参考一下

示例

当一个或多个组件或指令属性已更改时触发。

import { Component, OnChanges, Input } from '@angular/core';

@Component({
    selector: 'so-onchanges-component',
    templateUrl: 'onchanges-component.html',
    styleUrls: ['onchanges-component.']
})
class OnChangesComponent implements OnChanges {
    @Input() name: string;
    message: string;
    
    ngOnChanges(changes: SimpleChanges): void {
        console.log(changes);
    }
}

更改事件将记录

name: {
    currentValue: 'new name value',
    previousValue: 'old name value'
},
message: {
    currentValue: 'new message value',
    previousValue: 'old message value'
}
           

 类似资料:

相关阅读

相关文章

相关问答