Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

125
Views
How to get data into html in angular

I am trying to use angular to send data from parent to child component. In my parent component I use a onclick event to send data to my child component.

In my child component user-profile.ts i have this:

@Input('user')
  set user(user: any) {
  
  }

I know that the component recieved the data because if i console.log(user) it shows the data. However it doesnt see the data in the html. In the html of this file i have this

<h1>
  {{ user.name }}
</h1>

But i then get the error: "Cannot read property 'name' of undefined". What logic do i put into my .ts file to fix this?

over 4 years ago · Santiago Trujillo
3 answers
Answer question

0

Use below in your user-profile.ts

@Input() user: any; // or use your User type

and in your child component html file you can keep your change. To avoid undefined errors you can use. In your html.

{{user?.name}}
over 4 years ago · Santiago Trujillo Report

0

You haven't written the get statement

private _user; //Always defined the type instead using the any 
@Input('user')
set user(value: any) {
    this._user = value;
}

get user() {
  return this._user;
}

and also check null handle in user property, if data delayed.

    //HTML
   <h1>
   {{ user?.name }}
   </h1>
over 4 years ago · Santiago Trujillo Report

0

Please make sure you had pass the correct object and it not undefined. Or the best way is have it own default value.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!