我有一个奇怪的行为,我将尝试解释。
我正在构建一个报告系统,每个用户都可以让其他用户报告他们的个人资料、图片或消息。
在后端,我想显示一个CGridView,其中每个用户都出现在一行中,并且报告了总次数。
为此,我正在添加group
标准并且效果很好。
但是,如果我想按任何相关字段过滤视图,我必须添加with
到条件中,它适用于过滤或搜索,但结果的总显示不正确,显示 15 个结果中的 1-2 个当它应该显示在报告表中显示 2 个结果中的 1-2 个时,我有 15 行但只有两个用户,还添加了一个不存在的分页。
模型/报告.php
public function relations()
{
return array(
'reported' => array(self::BELONGS_TO, 'User', 'reported_id'),
);
}
public function search()
{
$criteria = new CDbCriteria();
$criteria->select = array(
'*',
'count(*) as reports_count',
);
$criteria->group = 't.reported_id';
$criteria->with = array('reported');
return new CActiveDataProvider($this, array(
'criteria' => $criteria,
'sort'=>array(
'attributes'=>array(
'status_search'=>array(
'asc'=>'reported.user_status_id',
'desc'=>'reported.user_status_id DESC',
),
'reports_count' => array(
'asc' => 'reports_count ASC',
'desc' => 'reports_count DESC',
),
'*',
),
),
));
}
更新:我找到了使用 join 而不是 with 并选择我需要的字段而不是使用 * 选择所有字段的解决方案:
$criteria->select = array(
't.id, t.reported_id',
'count(*) as reports_count',
);
$criteria->group = 't.reported_id';
$criteria->join = 'LEFT JOIN user u on u.id = t.reported_id';