5
강력한 매개 변수로 배열을 허용하는 방법
Rails 4 앱으로 리메이크하기 때문에 has_many : through 연결을 사용하는 작동하는 Rails 3 앱이 있는데, Rails 4 버전에서 관련 모델의 ID를 저장할 수 있습니다. 이 두 가지 관련 모델은 두 버전에서 동일합니다. Categorization.rb class Categorization < ActiveRecord::Base belongs_to :question belongs_to :category end Question.rb has_many :categorizations has_many :categories, through: :categorizations Category.rb …