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

334
Visualizações
How to display the data that came to the server?

I create a chat, using the post method I send the data from the form to the server, and then redirect to the chat page. I have a block that should have the username entered on the registration page, how do I display it on the page? At the moment I'm doing this through local storage.

index.js

app.post('/', urlencodedParser, function (
    request,
    response
) {
    if (!request.body)
        return response.sendStatus(400);
    response.redirect("client/chat.html");
    console.log(request.body.Username);
});

io.on('connection', (socket) => {

    socket.on('chat message', (msg) => { 
....

That's how it goes now register.js:

const FORM = document.querySelector(".FORM");
const INPUT = document.querySelector(".INPUT");


FORM.addEventListener('submit', (Event) => {
    Event.preventDefault();
    if (INPUT.value) {
        let name = INPUT.value;
        localStorage.setItem("name", name);
        Event.target.reset();
    }
});

main.js:

const userName = localStorage.getItem('name');
nameBlock.innerHTML = userName;

How can I display it so that the server sends a request to the main and inserts it there with the help of innerHTML

enter image description here

about 4 years ago · Juan Pablo Isaza
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