|
|
|
@ -14,6 +14,10 @@ module ControllerRescueHandler
|
|
|
|
|
Util.logger_error e
|
|
|
|
|
render json: {status: -1, message: "接口方法异常"}
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
rescue_from ActionController::UnknownFormat do |e|
|
|
|
|
|
render json: {status: -1, message: "接口调用非JSON格式"}
|
|
|
|
|
end
|
|
|
|
|
# rescue_from ActionView::MissingTemplate, with: :object_not_found
|
|
|
|
|
# rescue_from ActiveRecord::RecordNotFound, with: :object_not_found
|
|
|
|
|
rescue_from Educoder::TipException, with: :tip_show
|
|
|
|
|