我一直在学习rails
http://guides.rubyonrails.org/getting_started.html。
在控制器中执行保存数据时遇到错误。运行博客时出现的错误是 :-undefined method `title' for nil:NilClass
**
我的posts_controller.rb 代码是
**
class PostsController < ApplicationController
def new
end
def create
@post=Post.new(params[:post].permit(:title,:text))
@post.save
redirect_to @post
end
private
def post_params
params.require(:post).permit(:title,:text)
end
def show
@post=Post.find(params[:id])
end
end
**
我的 show.html.rb 代码是
**
<p>
<strong> Title:</strong>
<%= @post.title %>
</p>
<p>
<strong> Text:</strong>
<%= @post.text %>
</p>
**
create_posts.rb 的代码
**
class CreatePosts < ActiveRecord::Migration
def change
create_table :posts do |t|
t.string :title
t.text :text
t.timestamps
end
end
当我在 create_posts 中定义标题时,请帮助我解决为什么会出现此错误。