创建操作后更新数据库不起作用

updating the database after create action doesn't work

set_bonus(member_id, cookie) 方法无效。我正在尝试更新与 self.set_signup_attribution(member_id, cookie, origin) returns 相同的模型。

new_has_value变量returns{"currency"=>"usd", "type"=>"flat", "amount"=>1000}

Model.rb

# THIS METHOD WORKS
def self.set_signup_attribution(member_id, cookie, origin)
  return unless cookie.present?
  tracking_code = cookie
  attribution_channel = AttributionChannel.find_by tracking_code: tracking_code
  associated_member_record = Member.find member_id
  if attribution_channel.present?
    Attribution.create!({
      event: Attribution::SIGN_UP,
      attribution_channel: attribution_channel,
      associated: associated_member_record,
      extra: origin
    })
    set_bonus(member_id, cookie)
  else
    Rails.logger.info "Unknown Attribution Channel for tracking code: '#{ tracking_code }'"
  end
end


# THIS METHOD DOES NOT WORK. UPDATES THE DATABASE.
def self.set_bonus(member_id, cookie)
  epoch = Member.find_by(id: member_id).attribution_epoch
  attribution_code = AttributionChannel.find_by(tracking_code: cookie)
  duration_value = attribution_code.attribution_duration.downcase.split(' ')
  duration = duration_value.first.to_i.send(duration_value.last)
  return if cookie.present? && epoch.present?
  current_time = Time.now
  if attribution_code.bonus_config.present?
    if (current_time - epoch).to_i < duration
      hash_value = attribution_code.bonus_config
      new_hash_value = hash_value.assoc("sign_up")[1]
      value = Attribution.where(attribution_channel_id: attribution_code)
      if new_hash_value["type"] == "flat"
        value.update_all(
          bonus_amount: new_hash_value["amount"],
          bonus_currency: new_hash_value["currency"]
        )
      elsif new_hash_value["type"] == "percentage"
        value.update_all(
          bonus_amount: new_hash_value["amount"],
          bonus_currency: new_hash_value["currency"]
        )
      else
        {
          bonus_amount: "Doesn't exist",
          bonus_currency: "Doesn't exist"
        }
      end
    else
      "Do nothing"
    end
  else
    "Do nothing"
  end
  #cookie = nil
  binding.pry
end

Controller.rb

def index
  unless session[:just_signed_up]
    redirect_back_or_settings_page
  end
  Attribution.set_signup_attribution(current_user, cookies[:visit_attr], request.referer)
  Attribution.set_bonus(current_user, cookies[:visit_attr])
  session[:just_signed_up] = false
  @email = current_user.email
end

我该怎么做?那是我尝试过但行不通的方法。我可以将 set_bonus 方法合并到 set_signup_attribution 方法或其他方法吗?

如有任何帮助,我们将不胜感激。

所以进一步钻研:

我合并了 set_bonusset_signup_attribution 以及 set_bonus 方法应该更新的两个字段(bonus_amount 和 bonus_currency) returns nil:

Attribution.create!(
  {
    event: Attribution::SIGN_UP,
    attribution_channel: attribution_channel,
    associated: associated_member_record,
    extra: origin
  }.merge(self.set_bonus(member_id, cookie).to_h)
)

在那个 set_bonus 方法上使用 binding.pry 之后,通过这个练习,我发现它有效,但它返回 nil,我不知道为什么。会不会是因为member_id在模型中不可用什么的?

在您的 if 语句中,您应该在适当的对象上调用 set_bonus 方法。

    attribution = Attribution.create!({
      event: Attribution::SIGN_UP,
      attribution_channel: attribution_channel,
      associated: associated_member_record,
      extra: origin
    })
    attribution.set_bonus(member_id, cookie) if attribution.persisted?

请小心,因为 .create! 会在出现问题时引发错误,所以使用

可能会更好
  attribution = Attribution.new(.....)
  if attribution.save
    attribution.set_bonus(.....)
  else
    Rails.logger.info  attribution.errors
  end

希望对您有所帮助。

干杯