Exprimer Redirection avec les données du post

app.post('/', function(req, res) {
  res.redirect(307, '/test');
});
Krushn