关于 ruby?? on rails:使用 HAML 重定向

Redirecting with HAML

我想使用 HAML 重定向到我视图中的另一个页面,具体取决于变量的状态。

理想情况:

1
2
- if days < 1
     - redirect to /settings


不要通过你的视图处理重定向,使用你的控制器。

控制器:

1
2
3
if days > 1
    redirect_to edit_user_registration_path
end