将超链接添加到微博中的Hartl Rails教程

时间:2013-10-05 10:15:07

标签: ruby-on-rails hyperlink railstutorial.org

我正在尝试这样做,以便当用户将链接发布为微博时,跟随他们的用户只需点击该链接即可转到该网站。目前,该链接仅作为文本发布。我怎样才能将这个属性赋予微博?

这是我的微博在_feed_item.html.erb

中的样子
    <span class="content"><%= feed_item.content %></span>

这是将微博转变为新闻源的部分内容。我需要这个“内容”部分成为超链接,而不仅仅是文本字符串“https:/ ....”

这是post-Rails教程。如果需要更具体的代码,请告诉我。谢谢!

1 个答案:

答案 0 :(得分:0)

您可以使用rinkurails_autolink宝石。

根据rinku的github页面:

require 'rinku'

Rinku.auto_link(text, mode=:all, link_attr=nil, skip_tags=nil)
Rinku.auto_link(text, mode=:all, link_attr=nil, skip_tags=nil) { |link_text| ... }

对于您的用例,我会尝试将代码放在帮助器中。例如,在micro_post_helper.rb中:

require 'rinku'

module MicroPostHelper
  def add_links(text)
    Rinku.auto_link(text)
  end
end

然后在你的erb *中你可以使用那个辅助方法。

*考虑从erb切换到haml。