我已经问过类似的问题,但现在更具体了。
我正在使用 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 呢?