我有一个名为common的div id,我希望在此div中显示的内容位于文件share / _common.html.erb
我应该用什么来代替<!-- content from _common.html.erb -->
,以便share / _common.html.erb的内容出现在div中?
<div id="common">
<!-- content from _common.html.erb -->
</div>
答案 0 :(得分:3)
将HTML评论替换为:
<%= render :partial => "share/common" %>
或者,如果您使用的是Rails 2.3.x:
<%= render "share/common" %>