最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Redirect to another Node.js page after a period of time - Stack Overflow

programmeradmin0浏览0评论

I wanted to know if there's a way to render a page in Node.js and then after 2 seconds redirect to another page. Something among the lines :

app.get('/thankyou',function(req,res){
    res.render('thankyou' {message : 'Thank you for your submission'});

    //after 2 seconds

    res.redirect('nextpage');
});

I wanted to know if there's a way to render a page in Node.js and then after 2 seconds redirect to another page. Something among the lines :

app.get('/thankyou',function(req,res){
    res.render('thankyou' {message : 'Thank you for your submission'});

    //after 2 seconds

    res.redirect('nextpage');
});
Share Improve this question asked May 30, 2017 at 13:17 EvgenyEvgeny 1074 silver badges17 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 12

You will have to do it in the template. The server code bees:

app.get('/thankyou',function(req,res){
    res.render('thankyou' {message : 'Thank you for your submission'});
});

And in the template add:

<script>
  setTimeout(function () {
     // after 2 seconds
     window.location = "/next-page";
  }, 2000)
</script>
发布评论

评论列表(0)

  1. 暂无评论