我正在构建一个调查应用并尝试构建复制功能,以便用户可以复制调查。
我需要做的是复制调查,调查问题和每个问题答案(例如多选项)。
以下是我的协会:
#Survey
has_many :questions
#Question
belongs_to :survey
has_many :answers
#Answer
belongs_to :question
那么,我如何复制/克隆调查及其关联?
我正在运行Rails 3。
答案 0 :(得分:1)
类似的东西:
#Survey
has_many :questions, :autosave => true # might need the autosaves, might not
#Question
belongs_to :survey
has_many :answers, :autosave => true
#Answer
belongs_to :question
class Survey < ActiveRecord::Base
def deep_copy(klass)
klass.questions.each do |question|
@question = self.questions.build(:name => question.name)
question.answers.each do |answer|
@question.answers.build(:name => answer.name)
end
end
end
end
所以要使用它,请执行以下操作:
@survey_to_copy = Survey.find(123)
@new_survey = Survey.new(:name => "new survey")
@new_survey.deep_copy(@survey_to_copy)
@new_survey.save
答案 1 :(得分:0)
不确定它是否与Rails 3兼容,但你应该看看https://github.com/openminds/deep_cloning