我正在尝试在 Rails 中提供自定义 404 响应,但我不确定如何将 :status 赋予respond_with
函数。
我知道render
,我可以做这样的事情:
render :status => :not_found, :json => {:response =>"There weren't any results"}
我怎么能做这样的事情respond_with
呢?有没有办法设置状态码respond_with
?
我使用的唯一原因respond_with
是,据我了解,respond_with
当您开始使用respond_to
. 如果这不正确并且我应该使用render
,请告诉我!