views:

65

answers:

1

I am new to ROR, i follow this tutorial to learn ROR,however, it show a error on

<%= form_for([@post, @post.comments.build]) do |f| %>
<%= f.error_messages %>
<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 %>

In Aptana Studio, it say :

ActionView::TemplateError (compile error
/home/ming/new/app/views/posts/show.html.erb:31: syntax error, unexpected ')'
...post.comments.build]) do |f| ).to_s); @output_buffer.concat(...
                              ^
/home/ming/new/app/views/posts/show.html.erb:51: syntax error, unexpected kENSURE, expecting ')'
/home/ming/new/app/views/posts/show.html.erb:53: syntax error, unexpected kEND, expecting ')') on line #31 of app/views/posts/show.html.erb:
28: <% end %>
29: 
30: <h2>Add a comment:</h2>
31: <%= form_for([@post, @post.comments.build]) do |f| %><%= f.error_messages %>
32: <div class="field">
33:     <%= f.label :commenter %>
34:     <br/>

So, any idea?

+3  A: 

you have an error, should be:

<% form_for ....

Without =

jordinl
Oh yes~~ it seems the official tutorial got something wrong...
SilverNight