我有三种模式:
class Course < ApplicationRecord
has_many :sections
end
class Section < ApplicationRecord
belongs_to :course
has_many :section_files
end
class SectionFile < ApplicationRecord
belongs_to :section
end
每当我尝试拨打@course.sections
时,都会收到错误undefined method 'relation_delegate_class' for Course::Section:Module
有什么想法吗?
答案 0 :(得分:0)
修复了我在Section
上指定类名的问题Class Course < ApplicationRecord
has_many :sections, class_name: "::Section"
end
虽然@section.section_files
似乎无需明确说明类名