我已经看过了纤薄的文档,我仍然无法弄清楚如何做到这一点:
<%= form_for([@post,@post.comments.build]) do |f| %> <div class="field"> <%= f.label :commenter %><br /> <%= f.text_field :commenter %> </div> <div class="field"> <%= f.label :body %><br /> <%= f.text_area :body %> </div> <div class="actions"> <%= f.submit %> </div> <% end %>
我试图翻译这样的第一行
= form_for([@post,@post.reviews.build]) do |f|
但是我得到一个语法错误.
解决方法
以前遇到类似的问题,我想你只需要一些子元素!尝试这个:
= form_for([@post,@post.comments.build]) do |f| div.field = f.label :commenter br = f.text_field :commenter div.field = f.label :body br = f.text_area :body div.actions = f.submit