Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Ruby hash which is passed to a hidden field. How do I extract this hash into JavaScript arrays that I can work with? I need to access the key/value pairs in JavaScript.

share|improve this question

1 Answer

up vote 8 down vote accepted

Use my_awesome_ruby_hash.to_json and then you can simply either eval it in js or use parseJSON. You might need to require 'json' (not in Rails).

share|improve this answer
thanks, that works. how would i iterate through the result in the js code? i.e. the key/value pairs...does json return a js hash? – newbie_86 Mar 24 '11 at 15:02
{ "a" => [1,2,3] } will turn into { "a" : [1,2,3]} so you can do obj["a"] in js to get it or a for in loop. – Jakub Hampl Mar 24 '11 at 15:25
@jakub Hampl - i have this: myList = Hash.new() myList[var1] = const1 myList[var2] = const2 I set a variable in my controller as follows: @myHash = myList.to_json In my javascript, I get the value as follows: theList = JSON.parse($('#hiddenfield').attr('value')); for (key in theList) { alert("key "+key); alert(theList[key]); alert(theList[thelist(key)]); } Alert1 is "key0", Alert2 is "var1", Alert3 is "undefined". I can't seem to access the value per key. Any suggestions? – newbie_86 Mar 24 '11 at 17:51
for (key in object) { if (!object.hasOwnProperty(key)) continue; value = object[key]; } should do the trick. – Jakub Hampl Mar 24 '11 at 18:18
it still doesn't work, just returns the index e.g. 0 and the var1 as above – newbie_86 Mar 24 '11 at 19:03
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.