I have 2 files. app.ts and child.ts
I am sending a variable from the application to the child, and I want to detect any change in the variable and show the data accordingly. I cannot detect changes in a variable.
Any help? I plugged in Plunker Link and I also explained what I want to do in the Child.ts file in the comments
App.ts File
//our root app component import {Component, NgModule} from '@angular/core' import {BrowserModule} from '@angular/platform-browser' import {ChildCom} from './child.ts' @Component({ selector: 'my-app', template: ` <div> <h2>Hello</h2> <child-com newdata={{data}}></child-com> </div> `, }) export class App { data: any = []; constructor(){ this.data = [{"name":"control","status":"false"}]; } } @NgModule({ imports: [ BrowserModule ], declarations: [ App, ChildCom ], bootstrap: [ App ] }) export class AppModule {}
Child.ts file
import {Component, Input} from '@angular/core'; @Component({ selector: 'child-com', template: ` <div> <p>Controls: {{newdata}}</p> </div> `, }) export class ChildCom { @Input() newdata: any = []; constructor(){ } // here I want to check if value of control in newdata variable is false // then display message on front end "your controls are not working" // if value of control in newdata variable is true // then display message on front end "your controls are working fine." // this should automatically happen whenever I change the value of newdata variable }
Plunker link
source share