我对 Rails 相当陌生,我不能 100% 确定如何实现以下功能。在我的 Rails 应用程序中,我的用户可以创建帖子并对这些帖子发表评论,但是如果用户在他们创建的评论中不仅放文本而且还放 URL,我如何显示可点击的 URL。这是我的帖子show.html.erb
模板。
<div class="page-header">
<h4>All Comments</h4>
</div>
<% @post.newest_comments.each do |comment| %>
<div class="comments">
<h5><%= comment.body %></h5>
<li>
<small class="muted">
posted by <%= link_to comment.creator.username %> <%= time_ago_in_words(comment.created_at) + ' ago' %>
<% if logged_in? && (comment.creator == current_user) %> |
<%= link_to 'edit', edit_post_comment_path(@post, comment) %> |
<i class="icon-user icon"></i>
<% end %>
</small>
</li>
</div>
<% end %>