作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当使用不存在的 id 访问对象的显示页面时,会抛出 RecordNotFonud
异常。有没有办法可以重定向到某个错误页面,或者在抛出此错误时可能采取不同的操作?
最佳答案
如果您使用 Rails 3,则可以使用 rescue_from:
class ApplicationController < ActionController::Base
rescue_from ActiveRecord::RecordNotFound, :with => :render_404
def render_404
respond_to do |format|
format.html { render :action => "errors/404.html.erb", :status => 404 }
# and so on..
end
end
end
关于ruby-on-rails - Ruby on Rails : How do I change the behavior of RecordNotFound?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7244075/
我是一名优秀的程序员,十分优秀!