我正在做Ruby on Rails入门指南的5.11部分。当我尝试在本地服务器上编辑文章时,出现错误。
我正在尝试为一个班级项目学习Ruby on Rails。该项目的一部分是对我要向班级提出的框架进行有效的演示。
这是articles_controller
的代码:
class ArticlesController < ApplicationController
def show
@article = Article.find(params[:id])
end
def index
@articles = Article.all
end
def edit
@articles = Article.find(params[:id])
end
def new
@article = Article.new
end
def create
@article = Article.new(article_params)
if @article.save
redirect_to @article
else
render 'new'
end
end
def update
@article = Article.find(params[:id])
if @article.update article_params
redirect_to @article
else
render 'edit'
end
end
def destroy
@article = Article.find(params[:id])
@article.destroy
redirect_to articles_path
end
private
def article_params
params.require(:article).permit :title, :text
end
end
这是编辑文章的代码:
<h1>Edit article</h1>
<%= form_with model: @article, local: true do |form| %>
<% if @article.errors.any? %>
<div id="error_explanation">
<h2>
<%= pluralize(@article.errors.count, "error") %> prohibited
this article from being saved:
</h2>
<ul>
<% @article.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<p>
<%= form.label :title %><br>
<%= form.text_field :title %>
</p>
<p>
<%= form.label :text %><br>
<%= form.text_area :text %>
</p>
<p>
<%= form.submit %>
</p>
<% end %>
<%= link_to 'Back', articles_path %>
我希望能够编辑并保存文章。相反,我收到一条错误消息,指出未定义方法“错误”。
答案 0 :(得分:1)
您的edit
动作似乎有错字。您应该将Article.find(params[:id])
的结果分配给@article而不是@articles
请注意,Ruby中的实例变量的默认值为nil