gpt4 book ai didi

ruby-on-rails-3 - Rails 3 rescue_from,与自定义模块一起工作

转载 作者:行者123 更新时间:2023-12-04 07:19:51 26 4
gpt4 key购买 nike

我正在编写一个 Rails 应用程序,我想稍微干一点,而不是在我需要它的每个 Controller 的顶部调用我的自定义错误类,我将它放在一个模块中并包含它模块。

工作代码(模块):

module ApiException
class EmptyParameter < StandardError
end
end

工作代码( Controller ):

# include custom error exception classes
include ApiException

rescue_from EmptyParameter, :with => :param_error

# rescure record_not_found with a custom XML response
rescue_from ActiveRecord::RecordNotFound, :with => :active_record_error

def param_error(e)
render :xml => "<error>Malformed URL. Exception: #{e.message}</error>"
end

def active_record_error(e)
render :xml => "<error>No records found. Exception: #{e.message}</error>"
end

这是我的问题,使用 :with 命令,我将如何调用自定义模块中的方法?

像这样:rescue_from EmptyParameter, :with => :EmptParameter.custom_class

最佳答案

你可以尝试这样的事情:

rescue_from EmptyParameter do |exception|
EmptyParameter.custom_class_method
end

关于ruby-on-rails-3 - Rails 3 rescue_from,与自定义模块一起工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4493918/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com