У меня есть две ассоциации моделей: Survey_question и survey_answer.
Модель Survey_question
class SurveyAnswer < ApplicationRecord
belongs_to :survey_question
validates_presence_of :answer_content, if: "answer_type!=Radio Button"
end
Модель Survey_question
class SurveyQuestion < ApplicationRecord
belongs_to :user
belongs_to :survey
has_many :survey_answers
accepts_nested_attributes_for :survey_answers, allow_destroy: true
has_many :survey_responses
accepts_nested_attributes_for :survey_responses
validates :question_content, presence: true
validates :answer_type, presence: true
end
Я только для проверки наличия answer_content оператора survey_answer, когда тип ответа survey_question равен "Radio Button"?как я могу достичь этого ??заранее спасибо.