通过单击带有此代码的标记为“user_id”的链接,我有一个指向用户配置文件的链接:
<p>Tags: <%= raw feed_item.usertags.map(&:user_id).map { |t| link_to t, usertag_path(t) }.join(', ') %></p>
我正在尝试使链接显示为 user_id 链接指向的用户名。有任何想法吗?
编辑:
用户型号:
attr_accessible :name(aka user_name), :email, :password, :password_confirmation
微贴模型:
attr_accessible :content, :user_id, :usertag_list
has_many :usertaggings
has_many :usertags, through: :usertaggings
belongs_to :user
用户标签模型:
attr_accessible :user_id *actually a string field not integer*
has_many :usertgaggings
has_many :microposts, through: :usertaggings