0

我试图访问存储在数据透视表上的数据但没有成功...

我的表格和模型是这些:

*国家
-id
-name
-code_name
-active

*网站
-id
-season_id
-title
-active

国家站点:
-country_id
-site_id
-year

class Site_Model extends ORM {

  protected $has_and_belongs_to_many = array('countries');
}

class Country_Model extends ORM {

  protected $has_and_belongs_to_many = array('sites');
}

我想知道是否有内置方法或其他东西可以访问数据透视表的“年份”值。

谢谢!

4

1 回答 1

1

您需要一个 has_many“通过”关系。见这里:http ://docs.kohanaphp.com/libraries/orm/advanced#has_many_through_relationships

于 2012-04-23T14:37:50.683 回答