我有 2 个名为主题和页面的模型。它们之间存在一对多的关联。
class Subject < ActiveRecord::Base
has_many :pages
attr_accessible :name
attr_accessible :position
attr_accessible :visible
attr_accessible :created_at
end
和
class Page < ActiveRecord::Base
belongs_to :subject
attr_accessible :subject_id
attr_accessible :name
attr_accessible :permalink
attr_accessible :position
attr_accessible :visible
attr_accessible :created_at
end
我在 view -> pages 文件夹中有 list.html.erb。
Q. 我的问题是我想在 list.html.erb 中显示所有的 subject_id。如何?对于我必须在 pages_controller 和 list.html.erb 中进行的更改,以便我得到解决方案......