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

341
Views
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
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!