关于 relations [ 新手入门 ]
blog里面的 post类中
public function relations()
{
return array(
'author' => array(self::BELONGS_TO, 'User', 'author_id‘),
'comments' => array(self::HAS_MANY, 'Comment', 'post_id',
'condition'=>'comments.status='.Comment::STATUS_APPROVED,
'order'=>'comments.create_time DESC'),
'commentCount' => array(self::STAT, 'Comment', 'post_id',
'condition'=>'status='.Comment::STATUS_APPROVED),
);
}
里面的 author是哪个表里的,author 是哪个表里的, 怎么都没指明是哪个表的,里面的author,comment ,condition,condition 不是应该都是属于 post表的吗? 请说的详细些。。。
共 12 条回复
-
lz19881123 回复于 2011-07-31 22:57 举报
呵呵,接分了
-
public function relations() { return array( 'author' => array(self::BELONGS_TO, 'User', 'author_id‘), 'comments' => array(self::HAS_MANY, 'Comment', 'post_id', 'condition'=>'comments.status='.Comment::STATUS_APPROVED, 'order'=>'comments.create_time DESC'), 'commentCount' => array(self::STAT, 'Comment', 'post_id', 'condition'=>'status='.Comment::STATUS_APPROVED), ); }
fiaw
注册时间:2011-07-15
最后登录:1970-01-01
在线时长:0小时0分
最后登录:1970-01-01
在线时长:0小时0分
- 粉丝0
- 金钱215
- 威望0
- 积分215