0

我的 Yii 应用程序中有 2 个表;类别项目

Category
- id
- name

Item
- id
- category_id
- name

我想做的是获取类别表中的项目列表,然后计算项目表中每个类别的项目数。

我正在使用 CActiveDataProvider 检索 Category 表中的项目列表,然后使用 for 循环来计算每个类别中的项目数。但是,我似乎无法弄清楚如何将数组与我的 DataProvider 数据项合并。

到目前为止,这是我的代码。

public function actionIndex()
{
    $dataProvider = new CActiveDataProvider('Category', array(
        'criteria' => array(
            'select' => 'id, name, slug',
            'order' => 'name ASC',
        ),
    ));
    $dataProvider->setPagination(false);
    $count = array();
    foreach($dataProvider->getData() as $categoryData) {
        $count[] = Item::model()->count("category_id = :categoryID", array("categoryID" => $categoryData->id));
    }
    $this->render('index', array(
        'dataProvider' => $dataProvider,
        'count' => $count,
    ));
}

如何将 $count 数组与我现有的 dataProvider 数据项合并,以便我可以将它与 CListView 一起使用?还有比这更好的解决方案吗?

4

1 回答 1

0

如果您的关系设置正确,则不需要单独的计数数组。您的index视图很可能如下所示:

<h1>Messages</h1>
<?php $this->widget('zii.widgets.CListView', array(
    'dataProvider'=>$dataProvider,
    'itemView'=>'_view',
)); ?>

然后你_view应该看起来像这样:

<div class="view">
    <b><?php echo CHtml::encode($data->getAttributeLabel('id')); ?>:</b>
    <?php echo CHtml::link(CHtml::encode($data->id), array('view', 'id'=>$data->id)); ?>
    <br />
    <b><?php echo CHtml::encode($data->getAttributeLabel('name')); ?>:</b>
    <?php echo CHtml::encode($data->name); ?>
    <br />
    <b>Items:</b>
    <?php echo count($data->items); ?>
    <br />
</div>

这是假设你的Category模型有这个:

public function relations() {
        return array(
            'items' => array(self::HAS_MANY, 'Item', 'category_id'),
        );
    }
于 2013-08-07T19:13:37.773 回答