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

184
Views
No se pueden leer las propiedades de undefined (leyendo 'nombre')"

Soy nuevo en vue , tengo este json :

ingrese la descripción de la imagen aquí

y tengo este objeto en la tienda:

 company_profiles: [ { profile: { projects: { team: { teammate: { contracts: {} } } } }, } ],

Intenté hacer un bucle para:

 <div v-for="contract in company_profiles.profile.projects.team.teammate.contracts"> {{ contract }} </div>

pero en la consola tengo este error:

TypeError: no se pueden leer las propiedades de undefined (leyendo 'compañero de equipo')

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

company_profiles.profile.projects es una matriz, por lo que la lectura de .team en ella no está definida.

tal vez intente

 <div v-for="project in company_profiles.profile.projects" :key="project.id" > <h3>{{ project.name }}</h3> <h4>contract:</h4> <pre v-html="project.team?.teammate?.contract" /> </div>
about 4 years ago · Juan Pablo Isaza 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!