0

Rails アプリに問題があります。リンクしたい

<h1><%= news.title %></h1> 

このような。しかし、HTML タグ "a" の代わりに、link_to を使用したいと考えています。

<a href="trainers-single.html" class="postTitle"><h1><%= news.title %></h1></a>

お気に入り:

<%= link_to "<h1><%= news.title %></h1>", news, :class => "postTitle" %>

しかし、それは受け入れません。それを示す正しい方法は何ですか?

4

3 に答える 3

4

使用するだけです:

<h1><%= link_to news.title, news, :class => "postTitle" %></h1>
于 2013-05-06T11:10:56.167 に答える
1
<%= link_to news, :class => "postTitle" do %>
  <h1><%= news.title %></h1> 
<% end %>

あなたも使えると思います

<%= link_to "<h1>#{ news.title }</h1>".html_safe, news, :class => "postTitle" %>
于 2013-05-06T11:11:34.720 に答える
1

aタグの外側のタグを取得するには、次のようにh1します。

<%= 
link_to news, class: "postTitle" do
%>
  <h1><%= news.title %></h1>
<%
end
%>
于 2013-05-06T11:13:31.150 に答える