2

使用 Ruby 1.8.7 和 Rails 3.2.12。

我在测试带有“.json”扩展名的 URL 时遇到问题。我正在构建自定义错误页面并具有以下内容:

# errors_controller.rb
def show
  @exception = env["action_dispatch.exception"]
  respond_to do |format|
    format.json { render :json => { :error => @exception.message, :status => request.path[1..-1] } } 
    format.html { render :file => File.join(Rails.root, 'public', request.path[1..-1]), :format => [:html], :status => request.path[1..-1], :layout => false } 
  end
end

# routes.rb
match ":status" => "errors#show", :constraints => { :status => /\d{3}/ }

# application.rb
config.exceptions_app = self.routes

对于诸如“localhost:3000/session/nourl.json”之类的 URL,我触发了 的 HTML 块respond_to,我可以验证服务器是否使用这些日志以 HTML 格式响应:

Processing by ErrorsController#show as HTML
Parameters: {"status"=>"404"}
Rendered public/404.html (13.2ms)
Completed 404 Not Found in 48ms (Views: 47.3ms | ActiveRecord: 0.0ms)

我能够触发 JSON 块的唯一方法是:format => :json在路由中,然后它工作正常,但“localhost:3000/session/nourl”也会用 JSON 响应。

感觉就像我在这里做了一些愚蠢的事情,因为我已经看到了这两种情况的其他示例以预期的方式触发,并且我绝对没有看到其他类似行为的案例,所以我不得不认为这是一个孤立的情况,或者它是一些我无法观察到或在其他地方引起的级联问题。

如果有人可以就潜在问题提供一些见解,我将不胜感激。

更新:

更多信息:如果我查询“localhost:3000/locations/1.json”之类的内容,我会得到预期的响应;带有对象详细信息的 JSON 格式的页面。当请求带有“.json”扩展名的任意 URL 并尝试格式化自定义 JSON 响应以返回时,我无法实现相同的行为。有没有办法做到这一点?

4

1 回答 1

3

Rails 将调用委托给错误应用程序,所有请求格式的东西都会丢失。所以你需要自己检查。您可以像这样检查请求信息:

  def api_request?
    env['ORIGINAL_FULLPATH'] =~ /^\/api/
  end

  def json_request?
    env['ORIGINAL_FULLPATH'] =~ /\.json$/
  end

在此处阅读有关此方法的更多信息:http: //phillipridlen.com/notes/2012/12/13/returning-multiple-formats-with-custom-dynamic-error-pages-in-rails/

于 2013-11-07T15:00:02.763 回答