gpt4 book ai didi

ruby-on-rails - 将参数传递给过滤器 - 最佳实践

转载 作者:行者123 更新时间:2023-12-04 06:57:50 26 4
gpt4 key购买 nike

有什么更好的方法可以将参数传递给 Rails Controller 中的过滤器?

编辑:过滤器具有不同的行为,这取决于传递给它的参数,或者取决于执行其操作的参数。我的应用程序中有一个示例,其中过滤器确定数据的排序方式。这个过滤器有一个 klass 参数并调用 klass.set_filter(param[:order]) 来确定搜索中的 :order。

最佳答案

你必须为此使用 procs。

class FooController < ApplicationController
before_filter { |controller| controller.send(:generic_filter, "XYZ") },
:only => :edit
before_filter { |controller| controller.send(:generic_filter, "ABC") },
:only => :new

private
def generic_filter type
end
end

编辑

另一种传递参数的方法是覆盖 ActionController::Filters::BeforeFiltercall 方法。

class ActionController::Filters::BeforeFilter
def call(controller, &block)
super controller, *(options[:para] || []), block
if controller.__send__(:performed?)
controller.__send__(:halt_filter_chain, method, :rendered_or_redirected)
end
end
end

现在您可以按如下方式更改 before_filter 规范

class FooController < ApplicationController

# calls the generic_filter with param1= "foo"
before_filter :generic_filter, :para => "foo", :only => :new

# calls the generic_filter with param1= "foo" and param2="tan"
before_filter :generic_filter, :para => ["foo", "tan"], , :only => :edit


private
def generic_filter para1, para2="bar"
end
end

关于ruby-on-rails - 将参数传递给过滤器 - 最佳实践,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2327682/

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