在活动管理员中,我必须覆盖设计密码控制器,以在密码令牌过期时显示错误。默认情况下,如果令牌过期,它不会显示任何错误。以下是我要覆盖的方法
<sublabels>
<label></label>
<label></label>
</sublabel>
如果 # PUT /resource/password
def update
self.resource = resource_class.reset_password_by_token(resource_params)
yield resource if block_given?
if resource.errors.empty?
resource.unlock_access! if unlockable?(resource)
if Devise.sign_in_after_reset_password
flash_message = resource.active_for_authentication? ? :updated : :updated_not_active
set_flash_message(:notice, flash_message) if is_flashing_format?
sign_in(resource_name, resource)
else
set_flash_message(:notice, :updated_not_active) if is_flashing_format?
end
respond_with resource, location: after_resetting_password_path_for(resource)
else
set_minimum_password_length
respond_with resource
end
end
返回false,则不会设置任何Flash消息。
为了抛出错误异常,我做了以下事情:
resource.errors.empty?
使用上面的代码,错误现在可见但不在同一页面加载上。然而,它在下一个视图中显示。如果我从设计密码控制器复制代码并且只是在&响应之前在else块中添加flash消息,它也可以正常工作。但我不喜欢这种方法。
有没有办法显示flash消息而不从设计控制器复制整个方法?
答案 0 :(得分:0)
在更新操作的第二行中,有以下内容:
yield resource if block_given?
这意味着您可以将块传递给此方法,如下所示:
def update
super do |resource|
if resource.errors.any?
flash[:notice] = resource.errors.full_messages.to_sentence
end
end
end
答案 1 :(得分:0)
这也有效
def create
@user = User.new(params[:user])
respond_to do |format|
if @user.save
flash[:notice] = 'User was successfully created.'
format.html { redirect_to(@user) }
format.xml { render xml: @user, status: :created, location: @user }
else
format.html { render action: "new" }
format.xml { render xml: @user.errors, status: :unprocessable_entity }
end
end
end