This article represents concepts and code samples in relation to how one could pass data from one component to another in an Angular app. Please feel free to comment/suggest if I missed mentioning one or more important points. Also, sorry for the typos.
As Angular is primarily based on components and components interaction, it is important to understand how data is passed from one component to another. Data is passed between the component using property bindings. Take a look at the syntax below:
<user [value]="user"></user>
In above syntax, user component’s property “value” is bound to “user” property of the parent component. The data type of the bound property needs to be matched. Thus, if the “value” is an object, the “user” property of parent component also needs to be an object. To achieve the contractual requirement, one could take define a user “interface” and then create a property of interface type for consistency. Following is sample code for the user interface. The code below could be saved in a separate file such as user.ts and the interface could be imported in different component appropriately.
export interface User { id: number, name: string, email: string, address: string, age: number }
Following are two different syntax that could be used in the Child component for it to receive the input from the parent component.
@Input decorator is used to define the property which receives the data from parent property. In other words, the @Input decorator adds metadata to the class that makes the “value” property, in the code below, available for property binding under the “value” alias. Take a look at the User component below and usage of @Input decorator.
import {Component, View} from 'angular2/core'; import {User} from './user'; @Component({ selector: 'user', }) @View({ template: '{{value.name}}' }) export class UserComponent { @Input('value') value: User; }
Another way is to use “inputs” array in the @Component metadata. Take a look at the following code:
import {Component, View} from 'angular2/core'; import {User} from './user'; @Component({ selector: 'user', inputs: ['value'] }) @View({ template: '{{value.name}}' }) export class UserComponent { value: User; }
In recent years, artificial intelligence (AI) has evolved to include more sophisticated and capable agents,…
Adaptive learning helps in tailoring learning experiences to fit the unique needs of each student.…
With the increasing demand for more powerful machine learning (ML) systems that can handle diverse…
Anxiety is a common mental health condition that affects millions of people around the world.…
In machine learning, confounder features or variables can significantly affect the accuracy and validity of…
Last updated: 26 Sept, 2024 Credit card fraud detection is a major concern for credit…
View Comments
Good
Yes it is verfy useful