它看起来ActionController::StatusCodes
已经从 Rails 3 中删除了。
我使用了 HTTP 状态代码的同义词,例如
200 => :ok
404 => :not_found
500 => :internal_server_error
有关更多代码,请参见此处:
http://apidock.com/rails/ActionController/Base/render#254-List-of-status-codes-and-their-symbols
我在哪里可以在 Rails 3 中找到这些?