Answers for "send object in redirect express"

63

express js redirect to url

window.location.href = "http://mywebsite.com/home.html";
Posted by: Guest on July-18-2019
3

express redirect with post data

app.post('/', function(req, res) {
  res.redirect(307, '/test');
});
Posted by: Guest on March-25-2021

Browse Popular Code Answers by Language