我正在 http://guides.rubyonrails.org/getting_started.html 上做 Ruby on Rails 教程

但是,当我进入“5.11 添加一些验证”时,在我尝试从索引 View 创建新帖子时添加要显示的错误消息后,我得到

“nil:NilClass 的未定义方法‘错误’”

这是突出显示的错误行。

我已经在 Controller 的新操作中创建了一个新帖子。

这是来源

新的.html.erb

<h1>New Post</h1>
  <%= form_for :post, url: posts_path 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 %>

post_controller.rb
class PostsController < ApplicationController
def new
    @Post = Post.new
end

def create
    @post = Post.new(post_params)
    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 edit
    @post = Post.find(params[:id])
end

def update
    @post = Post.find(params[:id])

    if @post.update(post_params)
        redirect_to @post
    else
        render 'edit'
    end
end

private
    def post_params
        params.require(:post).permit(:title, :text)
    end
end

谢谢。

最佳答案

改变

@Post = Post.new


@post = Post.new

微妙但致命

关于ruby-on-rails - 为 nil :NilClass 获取未定义的方法 `errors',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20819994/

10-10 13:13