2012-04-10 44 views
0

嗨,這一切都是代碼,我使用如何在LinkController#回調rails中解決這個TypeError?

user = client.profile(:fields => %w(positions)) 
    puts "User client :"+user.positions[0] 

當我運行的代碼,我得到下面的錯誤。

TypeError in LinkController#callback 
can't convert LinkedIn::Position::Resource into Stringcan't convert LinkedIn::Position::Resource into String 

請幫我解決這個

回答

1

你嘗試將它轉換成字符串?

puts "User client :"+user.positions[0].to_s

或者更好:

puts "User client :#{user.positions[0]}"
+0

感謝它的工作 – SAR 2012-04-10 13:52:42

相關問題