我對Ruby很新穎。我正在湊合這樣的事情:無法在散列值中循環訪問
in_msg.updateComments.map{|c| c.each} do |comment|
in_msg.updateComments
是一個散列。
,但我得到的錯誤:
SyntaxError: /Users/alexgenadinik/projects/cmply/cmply-app/app/models/linked_in_update.rb:65: syntax error, unexpected kDO, expecting kEND
in_msg.updateComments.map{|c| c.each} do |comment|
不知道如何正確地做到這一點?
的數據來自於這樣的:
"updateComments"=>{"values"=>[{"comment"=>"Sweet", "person"=>{"siteStandardProfileRequest"=>{"url"=>"http://www.linkedin.com/profile?viewProfile=&key=23676551&authToken=FHXz&authType=name&trk=api*a140290*s148640*"},
你在做什麼? –
你想使用'map'或'each'嗎? –
只是想通過評論循環 – GeekedOut