Учитывая следующие ассоциации, мне нужно сослаться на Question
то, что a Choice
прикреплено к Choice
модели. Я пытался использовать belongs_to :question, through: :answer
для выполнения этого действия.
class User
has_many :questions
has_many :choices
end
class Question
belongs_to :user
has_many :answers
has_one :choice, :through => :answer
end
class Answer
belongs_to :question
end
class Choice
belongs_to :user
belongs_to :answer
belongs_to :question, :through => :answer
validates_uniqueness_of :answer_id, :scope => [ :question_id, :user_id ]
end
я осознаю
NameError неинициализированная константа
User::Choice
когда я пытаюсь сделать current_user.choices
Он отлично работает, если я не включу
belongs_to :question, :through => :answer
Но я хочу использовать это, потому что хочу иметь возможность validates_uniqueness_of
Я, наверное, упускаю из виду что-то простое. Любая помощь будет оценена.