为nil获取未定义的方法`errors':NilClass

时间:2013-12-28 22:19:05

标签: ruby-on-rails ruby ruby-on-rails-4

我正在http://guides.rubyonrails.org/getting_started.html

进行Ruby on Rails教程

然而,当我进入“5.11添加一些验证”时,在我尝试从索引视图创建新帖子时添加错误消息后我得到

“nil的未定义方法`错误':NilClass”

这是突出显示的错误行。

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

这是来源

new.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 %>

posts_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

感谢。

2 个答案:

答案 0 :(得分:3)

更改

@Post = Post.new

@post = Post.new

微妙但致命

答案 1 :(得分:2)

你的控制器出错:

def new
    @Post = Post.new
end

只需将@Post更改为@post。