Rails 4.0.0 の入門チュートリアル、http://guides.rubyonrails.org/getting_started.html#updating-postsに従っていますが、この質問をしたユーザーと同じ問題、セクション 5.12 の UrlGenerationError を抱えていました。 Railsガイドの。しかし、彼が post_path で抱えていた問題を修正し、エラーをスローしていた '}' を削除した後、投稿を編集しようとすると、未定義のメソッド 'id' エラー メッセージが表示されるようになりました。同様の問題を抱えている人をstackoverflowとgoogleで検索しましたが、解決策を見つけることができませんでした。どんな助けでも大歓迎です。
以下は私の Posts コントローラーと私の edit.html.erb ファイルです
posts_controller.rb:
class PostsController < ApplicationController
def new
@post = Post.new
end
def create
@post = Post.new(post_params)
if @post.save
redirect_to action: :show, id: @post.id
else
render 'new'
end
end
def show
@post = Post.find(params[:id])
end
def index
@posts = Post.all
end
private
def post_params
params.require(:post).permit(:title, :text)
end
def edit
@post = Post.find(params[:id])
end
def update
@post = Post.find(params[:id])
if @post.update(params[:post].permit(:title, :text))
redirect_to @post
else
render 'edit'
end
end
end
edit.html.erb:
<h1>Editing post</h1>
<%= form_for :post, url: post_path(@post.id) ,
method: :patch do |f| %>
<% if @post.errors.any? %>
<div id="errorExplanation">
<h2><%= pluralize(@post.errors.count, "error") %> prohibited
this post from being saved:</h2>
<ul>
<% @post.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<p>
<%= f.label :title %><br>
<%= f.text_field :title %>
</p>
<p>
<%= f.label :text %><br>
<%= f.text_area :text %>
</p>
<p>
<%= f.submit %>
</p>
<% end %>
<%= link_to 'Back', posts_path %>