我有一个设计附带的编辑页面。要在我的应用程序中使用它,我需要渲染一个特殊的布局,该布局应仅在编辑页面中呈现。 所以为了覆盖我写的编辑方法.. 这是我的registration_controller.rb
def edit
session[:tab] = "Edit Profile"
render layout: 'calculator'
end
def update
self.resource = resource_class.to_adapter.get!(send(:"current_#{resource_name}").to_key)
prev_unconfirmed_email = resource.unconfirmed_email if resource.respond_to?(:unconfirmed_email)
p '----------------'
resource_updated = update_resource(resource, account_update_params)
yield resource if block_given?
if resource_updated
if is_flashing_format?
flash_key = update_needs_confirmation?(resource, prev_unconfirmed_email) ?
:update_needs_confirmation : :updated
set_flash_message :notice, flash_key
end
sign_in resource_name, resource, bypass: true
respond_with resource, location: after_update_path_for(resource)
else
clean_up_passwords resource
redirect to '/users/edit'
end
end
事情是,如果我输入错误的密码,则会发生错误并且渲染失败。 所以我想在我的更新功能中重定向到编辑url。我想在重定向到编辑页面时也显示错误消息。
或者有什么简单的方法可以做到这一点。我想在编辑页面中渲染一个布局,在更新时发生错误时不会破坏(如密码不匹配)
答案 0 :(得分:1)
<强>闪存强>
在阅读了有关redirecting with flash的问题后,似乎使用redirect_to
并未维护您在控制器中设置的flash
键
要解决此问题,您可以使用flash.keep
:
def update
...
else
flash.keep #-> added
...
redirect to '/users/edit'
end
end
<强>系统强>
你的系统对我来说效率很低 - 我知道你已经复制了文件设计用途,但它仍然很臃肿。
您还在控制器中使用puts
吗?没有!您应该只输出views
!