当前位置:  开发笔记 > 后端 > 正文

如何在Rails 4中返回404 JSON格式?

如何解决《如何在Rails4中返回404JSON格式?》经验,为你挑选了1个好方法。

我是Ruby的新手.我正在使用Rails 4编写Restful API应用程序.如果找不到记录,如何返回404 JSON not found字符串?

我找到了一些帖子,但没有运气,仅适用于Rails 3.

在我的控制器中,我可以发现异常

  def show
    country = Country.find(params[:id])
    render :json => country.to_record
  rescue Exception
    render :json => "404"
  end

但我想要一个通用的捕获所有未找到的资源.



1> holodigm..:

使用rescue_from.请参阅http://guides.rubyonrails.org/v2.3.11/action_controller_overview.html#rescue

在这种情况下使用类似的东西:

class ApplicationController < ActionController::Base
  rescue_from ActiveRecord::RecordNotFound, :with => :record_not_found

  private
  def record_not_found(error)
    render json: { error: error.message }, status: :not_found
  end
end

推荐阅读
手机用户2402852307
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有