0

我想创建从 Post 到 User 模型的关系。所以我创建:

class Post < ActiveRecord::Base
attr_accessible :text, :title, :image, :user_id
has_many :comments
belongs_to :user
mount_uploader :image, ImageUploader
end

在 User.rb 中:

class User < ActiveRecord::Base
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable
  attr_accessible :email, :password, :password_confirmation, :remember_me
  has_many :posts
end

然后我将文件添加到数据库迁移:

class AddUserIdToPost < ActiveRecord::Migration
  def change
    add_column :posts, :user_id, :integer
  end
end

并通过 rake db:migration 进行迁移。

当我添加新帖子时,user_id(在数据库中)的值为空,但列存在。

Post_Controller 的一部分:

  def create
    @post = Post.new(params[:post])

    respond_to do |format|
      if @post.save
        format.html { redirect_to @post, notice: 'Post was successfully created.' }
        format.json { render json: @post, status: :created, location: @post }
      else
        format.html { render action: "new" }
        format.json { render json: @post.errors, status: :unprocessable_entity }
      end
    end
  end

我应该如何处理@post = Post.new(params[:post])?我觉得一切都很好...

4

1 回答 1

0
attr_accessible :text, :title, :image, :user_id

或者,而不是 attr_accessible,只需执行以下操作:

attr_protected
于 2013-04-04T17:23:49.177 回答