我已经问了类似的东西,但现在更具体了。
我正在使用Twitter Bootstrap模式进行登录,我想在保存之前编写或为用户创建过滤器(我不知道哪个更好),这将是这样的:
def before_save
if devise_error_messages
//stay in this modal and show errors or notice
else
//call another modal with congratulations text
end
end
如何从模型中调用devise_error_messages
方法或如何执行此操作?
然后,如何从过滤器调用js?