我正在制作一个缩略图,它将包含所有朋友的头像,并带有指向每个朋友个人资料的链接。在我添加这部分之前,我让每件事都正常工作。,other_user_page_path(friend.username)
误差为
undefined method `symbolize_keys!' for "/reie":String
这是整个代码
<% current_user.friends_of.each do |friend| %>
<%= link_to image_tag (friend.gravatar_url(:size => 30)) , other_user_page_path(friend.username)%>
<% end %>