2

データベース レコードのコピーに問題があります。言語モデルとの1対多の関係とスキルモデルとの多対多の関係を含む単純なモデルUserがあります。amoeba gem を使用して、すべての関連付けを含むレコードをコピーしたいと考えていました。1 対多のコピーは正常に機能しますが、多対多はまったくコピーしません。

ユーザーとスキルモデルのコードは次のとおりです。

user.rb

class User < ActiveRecord::Base
  belongs_to :language
  has_and_belongs_to_many :skills

    validates_presence_of :email, :name
    validates :email, 
        presence: { with: true, message: "cannot be empty" }, 
        uniqueness: { with: true, message: "already exists in database" }

  amoeba do
    enable
  end
end

スキル.rb

class Skill < ActiveRecord::Base
  has_and_belongs_to_many :users
end

users、skills、skills_users テーブルを作成する移行ファイルもあります。

class CreateUsers < ActiveRecord::Migration
  def change
    create_table :users do |t|
      t.string :name, null: false
      t.string :email, null: false
      t.references :language
      t.timestamps null: false
    end
  end
end

.

class CreateSkills < ActiveRecord::Migration
  def change
    create_table :skills do |t|
      t.string :name
      t.timestamps null: false
    end
  end
end

.

class AddUsersSkillsTable < ActiveRecord::Migration
  def change
    create_table 'skills_users', :id => false do |t|
      t.column :user_id, :integer
      t.column :skill_id, :integer
    end
  end
end

users_controller のコントローラー アクション 'show' は次のようになります。

def copy
    @user_copy = @user.dup
    if @user_copy.save(validate: false)
        redirect_to action: "index"
    end
end

このように user.rb のリレーションをコピーしようとしましたが、うまくいきませんでした:

amoeba do
    enable
    clone [:skills]
end

問題の原因は何ですか?

4

1 に答える 1

2

わかりました、私は間違いを見つけました。私が書いた

@user_copy = @user.dup 

の代わりにコントローラーファイルで

@user_copy = @user.amoeba_dup
于 2015-08-20T08:48:15.333 に答える