ActiveModel::MissingAttributeError(无法写入未知属性`user_id`)

min*_*ick 3 ruby-on-rails heroku

部署我的应用程序时,我的评论有问题。本地一切正常。来自 heroku 的日志说:

ActiveModel::MissingAttributeError (can't write unknown attribute `user_id`):
2018-01-02T15:52:43.461794+00:00 app[web.1]: [79cd7190-e2d9-4dd0-bf71-
709552e5c6e5] app/controllers/comments_controller.rb:15:in `create'
Run Code Online (Sandbox Code Playgroud)

我不知道发生了什么错误。也许一些数据库的东西?

我的评论控制器

class CommentsController < ApplicationController

def create 
    @post =Post.find(params[:post_id])
    @comment =@post.comments.create(params[:comment].permit(:name, :body).merge(user: current_user))
    redirect_to post_path(@post)
end


def destroy 

    @post = Post.find(params[:post_id])
    @comment= @post.comments.find(params[:id])
    if current_user.id == @comment.user_id 
        @comment.destroy
    end
    redirect_to post_path(@post)
end
end
Run Code Online (Sandbox Code Playgroud)

我的模特

class User < ApplicationRecord
 has_many :posts

 devise :database_authenticatable, :registerable,
        :recoverable, :rememberable, :trackable, :validatable
end

class Post < ApplicationRecord
  belongs_to :user, optional: true
  has_many :comments, dependent: :destroy

  validates :title, presence: true, length: {minimum: 5}
  validates :body, presence: true

end

class Comment < ApplicationRecord
 belongs_to :post
 belongs_to :user
end
Run Code Online (Sandbox Code Playgroud)

我的迁移文件

class CreateComments < ActiveRecord::Migration[5.1]
 def change
 create_table :comments do |t|
   t.string :name
   t.text :body
   t.references :post, index: true

   t.timestamps
 end
 end
end
Run Code Online (Sandbox Code Playgroud)

如果您需要更多代码或有任何想法,请告诉我

编辑:如果我添加一个 user_id 列,我会收到一个SQLite3::SQLException: duplicate column name: user_id: ALTER TABLE "comments" ADD "user_id" integer错误

我的模式.rb

`create_table "comments", force: :cascade do |t|
t.string "name"
t.text "body"
t.integer "post_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "user_id"
t.index ["post_id"], name: "index_comments_on_post_id"
end

create_table "posts", force: :cascade do |t|
t.string "title"
t.text "body"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "image_file_name"
t.string "image_content_type"
t.integer "image_file_size"
t.datetime "image_updated_at"
t.string "theme"
t.integer "user_id"
end

create_table "users", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["email"], name: "index_users_on_email", unique: true
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
end
Run Code Online (Sandbox Code Playgroud)

SRa*_*ack 6

您需要user_idcomments表格中添加一列。将belongs_to需要这一点。您还需要一post_id列,user_id以便您的posts表可以使用。

可以自定义列名,但约定是使用格式parent_table_id.

这是文档中的关键引用:

关联是使用宏样式调用实现的,因此您可以声明性地向模型添加功能。例如,通过声明一个模型属于另一个模型,您可以指示 Rails 维护两个模型实例之间的主键 - 外键信息,并且您还可以将许多实用方法添加到您的模型中。

这意味着,例如,如果您的第一个用户的 id 为1,则他们所有的评论和帖子的user_id值都为1,这会将记录实际绑定在一起。

这是包含相关行的示例迁移:

def change 
  create_table :comments do |t|
    ...
    t.belongs_to :user, index: true
    ...
  end
end
Run Code Online (Sandbox Code Playgroud)

那有意义吗?如果您有任何问题,请告诉我,我可以根据需要更新:)