Inputs provide a mechanism to allow a parent component to bind properties that a child component can have access to. The parent component pushes the properties to the child component.
This post covers Angular 2 and up
In the parent component’s template, simply define property bindings in the child’s selector. The binding should point to properties available in the parent component’s class on the right side of the equal sign that you want to make available to a the child component. As for the name of the binding itself (left side of the equal sign), it’s totally up to you:
<selected-story [story]="currentStory" [character]="mainCharacter">
</selected-story>
export class StoryComponent {
currentStory: string = 'The Fox Without a Tail';
mainCharacter: string = 'Henry';
}
Now, in the child component, import Input from @angular/code and define your inputs with the @Input decorator like this:
import { Component, Input } from '@angular/core';
//...
Our child component now has access to the value of currentStory and mainCharacter from the parent component. Note how we aliased character to call the property myCharacter in the child component instead:
The story: {{ story }}
The character: {{ myCharacter }}
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
It doesn’t have enough information on how we can send data to a parent component instead. Also, you typed the wrong character variable in
selected-story.component.html
.