在我的控制器中我有:
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 -
答案 0 :(得分:3)
试试这个:
@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
现在是一个哈希数组。
答案 1 :(得分:1)
试试这个:
@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
答案 2 :(得分:0)
总有Hash [*]技巧:
Hash[*[['foo',1],['bar',2]].flatten]
=> {"foo"=>1, "bar"=>2}
答案 3 :(得分:0)
这仍然不能完全回答这个问题 如果你只想将哈希转换为数组,只需在哈希上调用to_a。
h = { "c" => 300, "a" => 100, "d" => 400, "c" => 300 }
h.to_a #=> [["c", 300], ["a", 100], ["d", 400]]