实现像散列哈希的音乐愿望清单

时间:2012-11-13 08:44:46

标签: ruby-on-rails arrays cookies hash-of-hashes

我正在尝试使用itunes rails gem,例如:

>> itunes = ITunes::Client.new
>> songs = itunes.music('green day she')
=> <#Hashie::Rash result_count=15 results=[...]>

因此我需要制作一份愿望清单,其中包含使用itunes gem创建的曲目并将其保存在Cookie中(是的)。 我想到了类似的东西:

     cookies => {:wishlist=> {
    :track1=>#<Hashie::Rash result_count=1 results=[#<Hashie::Rash artist_id=423861127 artist_name="Amenra"], 
    :track2=>#<Hashie::Rash result_count=1 results=[#<Hashie::Rash artist_id=192738438 artist_name="65daysofstatic"]}}

但是如何正确地在轨道中执行此操作以及如何从任何轨道获取艺术家姓名?

0 个答案:

没有答案