私は次のチュートリアルに従っただけで、うまく機能します。http://www.communityguides.eu/articles/6
しかし、私にとって彼が難しいことの1つは、編集です。
link_toに電話して編集しました
<%= link_to 'Edit', edit_article_comment_path(@article, comment) %>
その後、エラーのあるページが表示され、理由がわかりません。
NoMethodError in Comments#edit
Showing /home/jean/rail/voyxe/app/views/comments/_form.html.erb where line #1 raised:
undefined method `comment_path' for #<#<Class:0xa8f2410>:0xb65924f8>
Extracted source (around line #1):
1: <%= form_for(@comment) do |f| %>
2: <% if @comment.errors.any? %>
3: <div id="error_explanation">
4: <h2><%= pluralize(@comment.errors.count, "error") %> prohibited this comment from being saved:</h2>
ここでコメント編集のフォーム
<%= form_for(@comment) do |f| %>
<% if @comment.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@comment.errors.count, "error") %> prohibited this comment from being saved:</h2>
<ul>
<% @comment.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :title %><br />
<%= f.text_field :title %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
これがコントローラーですArticlecontrollershow
@article = Article.find(params[:id])
@comments = @article.comments.find(:all, :order => 'created_at DESC')
コメントコントローラー編集
def edit
@comment = Comment.find(params[:id])
end