1

我正在尝试使用 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"]}}

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

4

0 回答 0