我使用條紋在我的應用程序,有人把他們的信息後,我希望頁面的重定向到修改個人資料,這是edit_user_path(current_user)
重定向在導軌上edit_user_path(CURRENT_USER)
我怎麼會觸發幾秒後重定向到該頁面?
我在想下面的JavaScript,但是我怎麼讓URL成爲用戶編輯路徑?
<script>
$(document).ready(function() {
// Handler for .ready() called.
window.setTimeout(function() {
location.href = "https://www.google.co.in";
}, 5000);
});
</script>