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

221
Visualizações
Cannot access 'user' before initialization

I am new in Mern development, and getting this "Cannot access 'user' before initialization" error in controller file

Controller/user.js

const user = require('../models/user')
exports.signup = (req,res)=>{
   console.log('req.body', req.body);
  const user = new user(req.body);
  user.save((err, user)=>{    
if(err){
    return res.status(400).json({
        err
    })
}
res.json({
    user
})
  })
}

Route/user.js

const express = require('express');
const router = express.Router();

const {signup} = require('../controllers/user');

router.post("/signup", signup);
module.exports = router;
about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

On line 1 you define a variable named user.

On line 4 you define a different variable also named user in a different scope.

At the other end of line 4 you try to call the value of that variable as a function, but it doesn't have a value yet. Hence the error message.

You intended to call the function in the variable from line 1, but since the one on line 4 shadows it, you are calling that instead.

Don't shadow your variables.

Change the name of one of them.

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