重定向播放框架

时间:2015-05-17 21:15:15

标签: java playframework

我正在使用java的play 2,我想做这样的事情: return ok(“message”);在用户看到该消息后(2秒后),他将被重定向到“/ home”

1 个答案:

答案 0 :(得分:1)

使用HTML或JavaScript,与Play框架无关。

<meta http-equiv="refresh" content="2; url=http://example.com/">

<script>
    setTimeout(function(){
         window.location.href = 'http://example.com/'
    },2000);
</script>