我有一个在
ruby 2.1上运行的rails 4应用程序.我有一个类似的用户模型
class User < ActiveModel::Base def self.search(query: false,active: true,**extra) # ... end end
正如您在搜索方法中看到的,我正在尝试使用ruby 2的新关键字参数功能.
问题是当我从我的控制器中调用此代码时,所有值都被转储到查询中.
PARAMS
{"action"=>"search","controller"=>"users",query: "foobar" }
请注意,这是一个ActionController :: Parameters对象,而不是它看起来的哈希
UsersController
def search @users = User.search(params) end
我觉得这是因为params是一个ActionController :: Parameters对象而不是哈希.然而,在传递它时,甚至在params上调用to_h会将所有内容转储到查询中而不是预期的行为中.我认为这是因为键现在是字符串而不是符号.
我知道我可以构建一个新的哈希符号作为键,但这似乎比它的价值更麻烦.想法?建议?
解决方法
关键字参数必须作为散列传递符号,而不是字符串:
class Something def initialize(one: nil) end end irb(main):019:0> Something.new("one" => 1) ArgumentError: wrong number of arguments (1 for 0)
ActionController :: Parameters继承自ActiveSupport :: HashWithIndifferentAccess,默认为字符串键:
a = HashWithIndifferentAccess.new(one: 1) => {"one"=>1}
要使其成为符号,您可以调用symbolize_keys方法.在您的情况下:User.search(params.symbolize_keys)