我的应用程序上的验证码非常棘手。
我有一个用户和一个才华。用户has_one天赋。并且,根据应用程序的步骤,我需要验证一些情况。
这些是我的课程。
class User < ApplicationRecord
has_one :talent, dependent: :destroy
has_one :client, dependent: :destroy
has_one :agency, dependent: :destroy
before_create :set_initial_step
after_create :build_type
def build_type
logger.debug("Im inside build_type ***************** with #{type}")
if type.nil?
t = Talent.create(user: self)
Rails.logger.debug("checking errors ******#{type}*********** with #{t.errors.full_messages}")
else
o = Object.const_get(type.capitalize).create(user: self)
Rails.logger.debug("Im inside build_type ****#{type}************* with #{o.errors.full_messages}")
end
end
class Talent < ApplicationRecord
with_options if: Proc.new { |t| t.user.approval_submission_step >= 2 } do |t|
byebug
t.validates :talent_type_id,
:rate,
presence: true
t.validates :rate, numericality: { greater_than_or_equal_to: 25 }
end
with_options if: Proc.new { |t| t.user.approval_submission_step >= 3 && t.talent_type.is_model } do |t|
t.validates :gender,
:ethnicity,
:height_feet,
:height_inches,
:weight,
:eye_color,
:hair_color,
presence: true
t.validates :men_pant_size_waist,
:men_pant_size_length,
:men_shirt,
:men_dress_shirt_size,
:men_dress_shirt_neck,
:men_dress_shirt_sleeve,
:men_jacket,
:men_shoe_size,
presence: true, if: Proc.new { |t| t.gender == 'male' }
t.validates :ethnicity,
:inclusion => {in: VALID_ETHNICITY_TYPES}
t.validates :womens_dress_size,
:women_shoe_size,
:women_shirt,
:womens_dress_size,
:women_pant,
:women_bra_cup,
:women_bra_size,
presence: true, if: Proc.new { |t| t.gender == 'female' }
end
第一件事很奇怪。 with_options中间的byebug在服务器启动或执行Rails控制台时被调用。
创建新用户并保存时(使用用户的after_create回调)
t = Talent.create(user: self)
byebug未被调用。
我做错了什么?为什么在类加载过程中调用Talents的with_options,而在创建新的时却不调用它?
答案 0 :(得分:1)
第一件事很奇怪。 with_options中间的byebug在服务器启动或执行Rails控制台时被调用。
with_options
在加载类时进行评估,因此byebug仅在这些时刻停止执行。就是这样。
我不太确定您想对这些byebug
调用做些什么,但是我认为您想将它们添加到Proc中,该代码实际上是在当前实例的情况下进行评估的。
with_options if: Proc.new { |t| byebug; t.user.approval_submission_step >= 2 } do |t|