形成部分不渲染轨道

时间:2017-10-16 05:18:49

标签: html ruby-on-rails ruby

加载页面时,我没有收到任何错误消息唯一的问题是评论表单没有在浏览器中呈现。

<div class="col-sm-11 col-xs-12 blog-content">
<h2 class="text-center"><%= @post.title %></h2>
<h5 class="text-center"><%= @post.created_at.strftime('%b %d, %Y') %></h5>
<div><%= raw @post.body %></div>
<br>
<h2><%= @post.comments.count %></h2>
<%= render @post.comments %>
<h3>Add a comment...</h3>
<%= render partial: 'comments/form'%>
</div>

以下是我要渲染的评论表单。

<%= form_for([@post, @post.comments.build]) do |f| %>
    <p>
        <%= f.label :body%><br>
        <%= f.text_area :body%>
    </p>
    <br>
    <p>
        <%= f.submit %>
    </p>
<% end %>

1 个答案:

答案 0 :(得分:0)

评论部分表单应存在于此完整路径 app / views / comments / _form.html.erb 中。然后这应该工作