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