统一的错误处理
2015-04-30 本文已影响4128人
chenge微博谈
可以在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