标签:
在model中设置如下
/* * 设置关联 */ public function relations(){ return array( ‘cate‘=>array(self::BELONGS_TO, ‘Category‘, ‘catid‘) ); }
这样返回的就是 article.catid = category.id 的category表中的一行数据包含所有字段
HAS_MANY ( 有多个)
HAS_ONE ( 有一个)
MANY_MANY ( 多对多)
在视图中:
$v[‘cate‘]->cname
或者
$v->cate->cname
标签:
原文地址:http://www.cnblogs.com/mr-amazing/p/4773339.html