可以在application_controller用这个代码来处理错误异常,就不用每个方法都写了。
rescue_from Exception, with: :handle_exception
def handle_exception e
render json: { msg: e.message }
end
可以在application_controller用这个代码来处理错误异常,就不用每个方法都写了。
rescue_from Exception, with: :handle_exception
def handle_exception e
render json: { msg: e.message }
end
本文标题:统一的错误处理
本文链接:https://www.haomeiwen.com/subject/jqavfttx.html
网友评论