0

使用 2.3.8 的导轨。

在视图模板中我有这种类型的代码

<%content_for :sidebar do %>
  <h2>Sidebar</h2>
  <p><%=link_to "somewhere", "http://www.google.com/"%></p>
<% end %>

<h1>Pictures#new</h1>
<p>Find me in app/views/pictures/new.html.erb</p>

在 application.html.erb 模板中我有

<!-- END: Header -->
<%= yield(:sidebar) %>
</div>

<div class="gb">
<%= yield %>

当我在浏览器中查看页面而不是在命名 yield 中正确显示代码时,它正在转义所有标签。例如;

&lt;h2&gt;Sidebar&lt;/h2&gt;
  &lt;p&gt;<a href="http://www.google.com/">somewhere</a>&lt;/p&gt;

我不知道出了什么问题。帮助!谢谢。

4

1 回答 1

0

我在您的 application.html.erb 文件中看到一个随机</div>的 - 可能是导致问题的原因?

于 2010-07-31T18:36:49.400 回答