ruby-on-rails – 在Rails 3视图中,如何检测显示字符串中的URL,并将其格式化为该URL的链接?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 在Rails 3视图中,如何检测显示字符串中的URL,并将其格式化为该URL的链接?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的网站上有用户生成评论.如果用户在他们的评论添加了一个URL,我希望它被格式化为一个链接,并实际链接到该URL.我怎么做?

解决方法

Rails有一个 auto_link文本助手.
auto_link("Go to http://www.rubyonrails.org and say hello to david@loudthinking.com")
# => "Go to <a href=\"http://www.rubyonrails.org\">http://www.rubyonrails.org</a> and
#     say hello to <a href=\"mailto:david@loudthinking.com\">david@loudthinking.com</a>"

auto_link("Visit http://www.loudthinking.com/ or e-mail david@loudthinking.com",:link => :urls)
# => "Visit <a href=\"http://www.loudthinking.com/\">http://www.loudthinking.com/</a>
#     or e-mail david@loudthinking.com"
原文链接:https://www.f2er.com/ruby/266964.html

猜你在找的Ruby相关文章