Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

360
Visualizações
React Component inside .map() is throwing an error: TypeError: notes.map is not a function

am trying to show Noteitem component which is returned inside a map function.

        {notes.map((note) => {
          return (
            <Noteitem key={note._id} updateNote={updateNote} showAlert={props.showAlert} note={note} />
          );
        })}
about 4 years ago · Juan Pablo Isaza
2 Respostas
Responde à pergunta

0

notes should be an array for map function to work. You can check it in following way if notes is not null and is an array using notes.length and apply map function

{notes && notes.length && notes.map((note) => {
          return (
            <Noteitem key={note._id} updateNote={updateNote} showAlert={props.showAlert} note={note} />
          );
        })}
about 4 years ago · Juan Pablo Isaza Relatório

0

You can put if/else statement inside JSX to check the variable whether is exist or not

return (
   <>
      {
        notes.length
           ? 'fallback'
           : notes.map(note => <Noteitem key={note._id} updateNote={updateNote} showAlert={props.showAlert} note={note} />)
      }
   </>
)

IIFE

{(() => {
   if ("check note") {
      // fallback
   }
   return notes.map((note: NoteProps) => (
      <Noteitem key={note._id} updateNote={updateNote} showAlert={props.showAlert} note={note} />
   ));
})()}
about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda