Rails创建新的活动记录,并在参数中传递关联值

时间:2019-08-31 10:44:56

标签: ruby-on-rails parameters rails-activerecord has-many

我有2个看起来像这样的Rails模型

class Physician < UserProfile
   has_many :state_licenses, inverse_of: :physician, autosave: true, dependent: :destroy
   validates :state_licenses, :length => { :minimum => 1, message: "Please select at-least one state license"}
class StateLicense < ApplicationRecord
  include RailsAdminPhysicianDependencyConcern

  belongs_to :physician, inverse_of: :state_licenses
  belongs_to :state, optional: true

  attr_accessor :client_id

  validates :state, presence: { message: I18n.t("errors.choose_one", field: 'state') }
  #validates :license_number, presence: { message: I18n.t("errors.blank") }

  def name
    return "" unless state
    "#{state.try(:name)}"
  end

end


在我的控制器中,我正在使用下面的代码来创建带有一堆状态许可证的新Physician记录,但是由于某些原因,我传递给create函数的状态许可证从未将其传递给Physician模型

 def create
    physician = nil
    ActiveRecord::Base.transaction do

      state_licenses = params["state_licenses"]


      state_licenses_For_Association = []

      if (state_licenses != nil)
        state_licenses.each do |state_license|
          sl = {}
          sl[:state_id] = state_license
          state_licenses_For_Association.push(sl)
        end
      end


      physician = Physician.create(params.permit(:first_name, :last_name, :title, :residency_board_status, :residency_specialty_id, :state_licenses => state_licenses_For_Association))
      user_record = nil
      super do |user|
        user_record = user
        user.errors.delete(:user_profile)
        physician.errors.messages.each { |field, messages| messages.each {|message| user.errors.add(field, message)} }
      end
      raise ActiveRecord::Rollback unless user_record.persisted? && physician.persisted?
    end

    AdminNotificationsMailer.physician_signed_up(physician).deliver_now rescue nil
  end

我在做什么错了?

1 个答案:

答案 0 :(得分:1)

尝试更改此内容:

physician = Physician.create(params.permit(:first_name, :last_name, :title, :residency_board_status, :residency_specialty_id, :state_licenses => state_licenses_For_Association))

对此:

physician = Physician.create(params.permit(:first_name, :last_name, :title, :residency_board_status, :residency_specialty_id).merge(state_licenses: state_licenses_For_Association)) # note the .merge call