我试图访问存储在数据透视表上的数据但没有成功...
我的表格和模型是这些:
*国家
-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');
}
我想知道是否有内置方法或其他东西可以访问数据透视表的“年份”值。
谢谢!