我正在阅读" Rails教程入门"并且我坚持更新又名编辑。它在帖子#edit中抛出ArgumentError
- 表格中的第一个参数不能为空或为空。以下是突出显示的行:
表单中的第一个参数不能包含nil或为空
提取的来源(第1行):
<%= form_for @post do |f| %>
当我实现本教程的部分表单部分时,似乎已经开始了。
这里分别是post_contoller,edit action和_forms.html:
Post_controller:
class PostsController < ApplicationController
def new
@post = Post.new
end
def create
@post = Post.new(params[:post].permit(:title, :text))
if @post.save
redirect_to @post
else
render 'new'
end
end
def show
@post = Post.find(params[:id])
end
def index
@posts = Post.all
end
def update
@post = Post.find(params[:id])
if @post.update(params[:post].permit(:title, :text))
redirect_to @post
else
render 'edit'
end
end
def destroy
@post = Post.find(params[:id])
@post.destroy
redirect_to posts_path
end
private
def post_params
params.require(:post).permit(:title, :text)
end
end
Edit.html
<h1>Edit post</h1>
<%= render 'form' %>
<%= link_to 'Back', posts_path %>
_form.html
<%= form_for @post do |f| %>
<% if @post.errors.any? %>
<div id="error_explanation">
<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 %>
错误显示ID为&#34; 7&#34;这是我想要更新的记录。
所有其他功能都有效(显示,新增,删除)和BTW&#34;新功能&#34;使用相同的部分形式并且工作正常。
非常感谢任何帮助。谢谢!
答案 0 :(得分:1)
你应该在_controller.rb
中添加它def edit
@post = Post.find(params[:id])
end
答案 1 :(得分:0)
你必须将post对象作为本地传递。您不能直接访问部分控制器中定义的实例变量。它将是零
<h1>Edit post</h1>
<%= render :partial => 'form', :locals => {:post => @post} %>
<%= link_to 'Back', posts_path %>
在部分
中<%= form_for post do |f| %>
答案 2 :(得分:0)
检查下面的私人仅用于以下功能,并写下以上所有功能:
private
def article_params
params.require(:article).permit(:title, :text)
end