7

我希望在 jbuilder 视图中显示错误消息。例如,我可能有的一条路线可能是:

/foos/:id/bars

如果:id用户提交的内容不存在或无效,我希望能够在我的index.json.builder文件中相应地显示错误消息。

使用 Rails,完成这项工作的最佳方法是什么?控制器可能具有以下内容:

def index
  @bar = Bar.where(:foo_id => params[:id])
end

在这种情况下,params[:id]可能是nil,或者该对象可能不存在。我不确定这里最好的做法是在控制器中处理它并显式渲染一个error.json.builder,还是在index.json.builder视图本身中处理它。执行此操作的正确方法是什么,如果它在index.json.builderparams[:id]可以在那里检查吗?我知道我可以看到@bar.nil?但不确定是否相反?

4

2 回答 2

5

我认为您的意思是显示,因为索引实际上是用于列表/集合的。你应该去.first那里,否则你只是有关系,对吧?然后,用于.first!引发错误,因为 Rails 4 public_exceptions中的 Rails 机架中间件将以基本方式处理,例如

def show
  # need to do to_s on params value if affected by security issue CVE-2013-1854
  @bar = Bar.where(:foo_id => params[:id].to_s).first!
end

您也可以使用@bar = Bar.find(params[:id]),但已弃用,将在 Rails 4.1 中删除,之后您必须添加gem 'activerecord-deprecated_finders'到 Gemfile 才能使用。

对于索引,您可能需要@bars = Bar.all. 如果由于某种原因您想要过滤而不想要范围等,那么您可以使用@bars = Bar.where(...).to_a或类似的。

Rails 4:Rack 中的基本异常处理是自动的

只要查询开始出现错误,Rails 4 就应该能够返回错误的消息部分,因为where to_(format)可以在哈希上调用任何支持的格式(例如 json、xml 等)。

要了解原因,请查看 Rails 的 Rack public_exceptions中间件。

如果是 html,它将尝试从 Rails 的公共目录中读取相关文件以获取状态代码(例如500.html,对于服务器错误/HTTP 500)。

如果是其他格式,它会尝试to_(the format)在 hash: 上做{ :status => status, :error => exception.message }。要查看它是如何工作的,请转到 Rails 的控制台:

$ rails c
...
1.9.3p392 :001 > {status: 500, error: "herro shraggy!"}.to_xml
 => "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<hash>\n  <status type=\"integer\">500</status>\n  <error>herro shraggy!</error>\n</hash>\n" 
1.9.3p392 :002 > {status: 500, error: "herro shraggy!"}.to_json
 => "{\"status\":500,\"error\":\"herro shraggy!\"}" 

在中间件中,您将X-Cascade在代码中以及与 Rails 在 Rack 中的异常处理相关的各个地方看到标头。根据这个答案X-Cascade标头设置为pass告诉 Rack 尝试其他路由来查找资源。

Rails 3.2.x:可以处理机架中的异常

在 Rails 3.2.x 中,to_(format)为响应正文等执行的代码不在public_exceptions.rb中。它只处理html格式。

也许您可以尝试通过补丁将旧的中间件替换为较新的版本。

如果您希望 Rack 在没有补丁的情况下以更具体的方式处理您的错误,请参阅 José Valim 的文章中的 #3,“ Rails 3.2 中我最喜欢的五个“隐藏”功能”。

在那个和另一个答案中也提到,你可以使用config.exceptions_app = self.routes. 然后使用指向自定义控制器的路由,您可以像处理任何其他请求一样处理来自任何控制器的错误。请注意config.consider_all_requests_local = false您的config/environments/development.rb.

您不必使用路线来使用exceptions_app. 虽然它可能有点吓人,但它只是一个 proc/lambda,它接受一个哈希并返回一个格式为: 的数组[http_status_code_number, {headers hash...}, ['the response body']]。例如,您应该能够在 Rails 3.2.x 配置中执行此操作,以使其处理 Rails 4.0 之类的错误(这是最新的 public_exceptions 中间件折叠):

config.exceptions_app = lambda do |env|
  exception = env["action_dispatch.exception"]
  status = env["PATH_INFO"][1..-1]
  request = ActionDispatch::Request.new(env)
  content_type = request.formats.first
  body = { :status => status, :error => exception.message }
  format = content_type && "to_#{content_type.to_sym}"
  if format && body.respond_to?(format)
    formatted_body = body.public_send(format)
    [status, {'Content-Type' => "#{content_type}; charset=#{ActionDispatch::Response.default_charset}",
            'Content-Length' => body.bytesize.to_s}, [formatted_body]]
  else
    found = false
    path = "#{public_path}/#{status}.#{I18n.locale}.html" if I18n.locale
    path = "#{public_path}/#{status}.html" unless path && (found = File.exist?(path))

    if found || File.exist?(path)
      [status, {'Content-Type' => "text/html; charset=#{ActionDispatch::Response.default_charset}",
              'Content-Length' => body.bytesize.to_s}, [File.read(path)]]
    else
      [404, { "X-Cascade" => "pass" }, []]
    end
  end
end

注意:对于该处理的任何问题,故障安全实现在ActionDispatch::ShowExceptions 这里

Rails 3 和 4:在 Rails 控制器中处理一些异常

如果您希望在控制器本身中有错误呈现,您可以执行以下操作:

def show
  respond_with @bar = Bar.where(:foo_id => params[:id].to_s).first!
rescue ActiveRecord::RecordNotFound => e
  respond_to do |format|
    format.json => { :error => e.message }, :status => 404
  end
end

但是,您不需要引发错误。你也可以这样做:

def show
  @bar = Bar.where(:foo_id => params[:id].to_s).first
  if @bar
    respond_with @bar
  else
    respond_to do |format|
      format.json => { :error => "Couldn't find Bar with id=#{params[:id]}" }, :status => 404
    end
  end
end

您还可以使用rescue_from,例如在您的控制器或 ApplicationController 等中:

rescue_from ActiveRecord::RecordNotFound, with: :not_found

def not_found(exception)
  respond_to do |format|
    format.json => { :error => e.message }, :status => 404
  end
end

或者:

rescue_from ActiveRecord::RecordNotFound do |exception|
  respond_to do |format|
    format.json => { :error => e.message }, :status => 404
  end
end

虽然一些常见的错误可以在控制器中处理,但如果您的错误与缺少路由等相关的错误以 json 等格式格式化,则需要在 Rack 中间件中处理。

于 2013-04-16T21:19:01.013 回答
4

我会渲染 index.json.builder 或只是内联 json:error => 'not found' 并且不要忘记设置正确的 HTTP 状态::status => 404

所以结果可能如下所示:

render :json => { :error => 'not found' }, :status => 422 if @bar.nil?
于 2013-04-04T22:27:58.917 回答