admin管理员组文章数量:1346662
I have a ruby hash that i want to convert into a specific javascript hash.
Here is the ruby hash keyval
{
"Former Administration / Neutral"=>24,
"Media Personality / P"=>2,
"Journalist / Neutral"=>32,
"Consultant / Neutral"=>2,
...
"Journalist / P"=>11,
"Expert / Neutral"=>1,
"Activist / Neutral"=>15
}
Into javascript hash
{data: "Former Administration / Neutral", frequency: (24) },
{data: "Media Personality / P", frequency: (2) },
{data: "Journalist / Neutral", frequency: (32) },
{data: "Consultant / Neutral", frequency: (2) },
...
{data: "Journalist / P", frequency: (11) },
{data: "Expert / Neutral", frequency: (1) },
{data: "Activist / Neutral", frequency: (15) }
Tried
var obj = {};
for (var i = 0; i < <%= keyval.size %>; i++) {
obj["data"] = <%= keyval.keys[i] %>;
obj["frequency"] = '(' + <%= @keyval.values[i] %> + ')';
}
But the loop is not working obj
return the first element of the ruby hash frequency=24
and does not escape the space in Former Administration
. Why?
I have a ruby hash that i want to convert into a specific javascript hash.
Here is the ruby hash keyval
{
"Former Administration / Neutral"=>24,
"Media Personality / P"=>2,
"Journalist / Neutral"=>32,
"Consultant / Neutral"=>2,
...
"Journalist / P"=>11,
"Expert / Neutral"=>1,
"Activist / Neutral"=>15
}
Into javascript hash
{data: "Former Administration / Neutral", frequency: (24) },
{data: "Media Personality / P", frequency: (2) },
{data: "Journalist / Neutral", frequency: (32) },
{data: "Consultant / Neutral", frequency: (2) },
...
{data: "Journalist / P", frequency: (11) },
{data: "Expert / Neutral", frequency: (1) },
{data: "Activist / Neutral", frequency: (15) }
Tried
var obj = {};
for (var i = 0; i < <%= keyval.size %>; i++) {
obj["data"] = <%= keyval.keys[i] %>;
obj["frequency"] = '(' + <%= @keyval.values[i] %> + ')';
}
But the loop is not working obj
return the first element of the ruby hash frequency=24
and does not escape the space in Former Administration
. Why?
-
This definitly can not work, as
i
is a JS variable, but you are trying to use it in the RoR code. And you are overwriting the same object in every cycle of the loop. You need a Ruby loop, not a JavaScript loop. – user1983983 Commented Feb 6, 2014 at 14:50
3 Answers
Reset to default 4There's a to_json method for converting ruby hashes and arrays into json objects. You could make an array of hashes using the first hash, then call to_json on it. Then, you're doing all your data manipulation in ruby, and just converting the format to json at the end.
hash = {
"Former Administration / Neutral"=>24,
"Media Personality / P"=>2,
"Journalist / Neutral"=>32,
"Consultant / Neutral"=>2,
"Journalist / P"=>11,
"Expert / Neutral"=>1,
"Activist / Neutral"=>15
}
arr = []
hash1.each do |k,v|
arr << {:data => k, :frequency => v}
end
arr.to_json
gives
"[{"data":"Journalist / P","frequency":11},{"data":"Activist / Neutral","frequency":15},{"data":"Former Administration / Neutral","frequency":24},{"data":"Expert / Neutral","frequency":1},{"data":"Journalist / Neutral","frequency":32},{"data":"Consultant / Neutral","frequency":2},{"data":"Media Personality / P","frequency":2}]"
You said that you wanted a "javascript hash", but what it looks like you have in your question, at the end, is an array without the square brackets. My result is a valid json object representation which is an array of objects. Which i think is actually what you want.
You can dothis using map
and join
keyval.map{|k,v| "{data: \"#{k}\", frequency: (#{v}) }" }.join(",\r\n")
the map method provides the key as k
and the value as v
in this example.
Try this:
var data = [];
<% for i in [email protected] { %>
data.push({});
data[<%= i %>]["data"] = <%= @keyval.keys[i] %>;
data[<%= i %>]["frequency"] = '(' + <%= @keyval.values[i] %> + ')';
<% } %>
So you will get an array of those objects.
本文标签: ruby hash to javascript hashStack Overflow
版权声明:本文标题:ruby hash to javascript hash - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743830240a2546384.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论