如果我有以下型号:
class Section < ActiveRecord::Base
has_many :pages, :dependent => :destroy
end
class Page < ActiveRecord::Base
belongs_to :section
end
我有一个部分拥有一个页面,我如何添加一个链接到该页面的父级?或者,我怎样才能找到页面的所有者?
@page = Page.find(params[:id]) # or whatever the criteria
@page_link = link_to "section", @page.section
或者,在视图中:
<%= link_to "section", @page.section %>