Rails 哈希到数组到哈希如何?

发布于 2025-01-08 05:32:20 字数 660 浏览 1 评论 0原文

在我的控制器中,我有:

def index
    @title = 'asdsadas'
    @kategoris = Tag.where("name like ?", "%#{params[:q]}%")
    @kate = @kategoris.map(&:attributes).map{|d| d.map{|d| d.map{|d| d.dup.force_encoding("UTF-8") if d.respond_to?(:force_encoding) } } }
    respond_to do |format|
    format.html
    format.json { render :json => @kate }
    end
end

问题是它已经变成了一个数组:

[[["cached_slug","vinna-biljetter"],["created_at",null],["h1","inn biljetter - Delta i tävl

它应该是一个散列:

[{"cached_slug":"vinna-biljetter","created_at":"2011-04-28T10:33:05Z","h1":"inn biljetter - 

In my controller I have:

def index
    @title = 'asdsadas'
    @kategoris = Tag.where("name like ?", "%#{params[:q]}%")
    @kate = @kategoris.map(&:attributes).map{|d| d.map{|d| d.map{|d| d.dup.force_encoding("UTF-8") if d.respond_to?(:force_encoding) } } }
    respond_to do |format|
    format.html
    format.json { render :json => @kate }
    end
end

The problem is it has become an array:

[[["cached_slug","vinna-biljetter"],["created_at",null],["h1","inn biljetter - Delta i tävl

It should be a hash:

[{"cached_slug":"vinna-biljetter","created_at":"2011-04-28T10:33:05Z","h1":"inn biljetter - 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

梦开始←不甜 2025-01-15 05:32:20

试试这个:

@kate = []
@kategoris.each do |kat|
  h = {}
  kat.attributes.each{|k,v| h[k] = v.respond_to?(:force_encoding) ? v.dup.force_encoding("UTF-8") : v }
  @kate << h
end

OR

 @kate = @kategoris.map{|k| k.attributes.inject({}){|h,(k,v)| h[k] = v.respond_to?(:force_encoding) ? v.dup.force_encoding("UTF-8") : v;h}}

@kate 现在是一个哈希数组。

Try this:

@kate = []
@kategoris.each do |kat|
  h = {}
  kat.attributes.each{|k,v| h[k] = v.respond_to?(:force_encoding) ? v.dup.force_encoding("UTF-8") : v }
  @kate << h
end

OR

 @kate = @kategoris.map{|k| k.attributes.inject({}){|h,(k,v)| h[k] = v.respond_to?(:force_encoding) ? v.dup.force_encoding("UTF-8") : v;h}}

@kate is now an array of hashes.

榆西 2025-01-15 05:32:20

试试这个:

@kate = @kategoris.map |k|
 Hash[
   k.attributes.select{|k, v| v.respond_to?(:force_encoding)}.
     map{|k, v| [k, v.force_encoding("UTF-8")]}
 ]
end

PS:

上面的解决方案仅选择支持force_encoding的值。如果您想包含其他值:

@kate = @kategoris.map |k|
 Hash[
   k.attributes.map{|k, v| 
     [k, (v.respond_to?(:force_encoding) ? v.force_encoding("UTF-8") : v)]
   }
 ]
end

Try this:

@kate = @kategoris.map |k|
 Hash[
   k.attributes.select{|k, v| v.respond_to?(:force_encoding)}.
     map{|k, v| [k, v.force_encoding("UTF-8")]}
 ]
end

PS:

The solution above selects only the values that support force_encoding. If you want to include other values:

@kate = @kategoris.map |k|
 Hash[
   k.attributes.map{|k, v| 
     [k, (v.respond_to?(:force_encoding) ? v.force_encoding("UTF-8") : v)]
   }
 ]
end
多孤肩上扛 2025-01-15 05:32:20

总有 Hash[*] 技巧:

Hash[*[['foo',1],['bar',2]].flatten]
=> {"foo"=>1, "bar"=>2}

There's always the Hash[*] trick:

Hash[*[['foo',1],['bar',2]].flatten]
=> {"foo"=>1, "bar"=>2}
‖放下 2025-01-15 05:32:20

这可能还不能完全回答问题
如果您只想将哈希转换为数组,只需对哈希调用 to_a 即可。

h = { "c" => 300, "a" => 100, "d" => 400, "c" => 300  }
h.to_a   #=> [["c", 300], ["a", 100], ["d", 400]]

参考:
https://ruby-doc.org/core- 2.5.0/Hash.html#method-i-to_a

This may not completely answer the question, still
If you just want to convert a Hash to Array, just call to_a on the hash.

h = { "c" => 300, "a" => 100, "d" => 400, "c" => 300  }
h.to_a   #=> [["c", 300], ["a", 100], ["d", 400]]

Reference:
https://ruby-doc.org/core-2.5.0/Hash.html#method-i-to_a

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文