Angular子组件监听父组件传入值的变化方法

子组件监听父组件传入值的变化

import {Component, EventEmitter, Input, OnInit, Output,SimpleChanges} from '@angular/core';
 @Input() 父组件传入的值: any;
  ngOnChanges(changes: SimpleChanges) {
        console.log('ngOnChanges', this.传入的值);
        this.方法刷新数据(); //判断checked
         this.reflash();//获取传参时执行刷新动作
    }

参考博文angular5 子组件监听父组件传入值的变化

父组件调用子组件的方法

HTML :#id 在父组件的html引用子组件的标签里
父组件的ts
 @ViewChild('id') 变量声明:子组件的Component;
调用方法:
// this.变量.agSwitch()  (子组件的方法)

你可能感兴趣的:(学习心得,angular.js,typescript,javascript)