0
통해 has_many에서 파라미터를 전달 I 내가 Testquestion
order
의 열 값을 전달하고자하는 Test
생성시 클래스 Test, Question, Testquestion
가 has_many through
연관
class Test
has_many :testquestions
has_many :questions, through: :testquestions
end
class Question
has_many :testquestions
has_many :tests, through: :testquestions
end
class Testquestion
belongs_to :test
belongs_to :questions
end
의해 관련이있다. 관련 모델 (Testquestion가) 업데이트됩니다 있도록
def create
Test.create(test_params)
end
def test_params
params.require(:test).permit(:testname,question_attributes:[:questionname])
end
어떻게 order
컬럼의 값을 전달해야한다.
매력처럼 작동합니다. 정말 고마워 –