我正在关注 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 文件
post_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
编辑.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 %>