我的 Rails 应用程序有问题。我要链接
<h1><%= news.title %></h1>
像这样。但我想使用 link_to 而不是 HTML 标记“a”。
<a href="trainers-single.html" class="postTitle"><h1><%= news.title %></h1></a>
喜欢:
<%= link_to "<h1><%= news.title %></h1>", news, :class => "postTitle" %>
但它不接受它。显示它的正确方法是什么?