0

我有两个名为的表contentcategory它们的MANY_MANY关系如下:

'contents'=>array(self::MANY_MANY, 'Content',
                'content_category(category_id, content_id)',
                'order'=>'contents.id DESC',
    )

content_category 是这两个表之间的一个中间表。所以我使用这种关系来查找这样一个类别的内容:

$category = Category::model()->findByPk($cat_id);
foreach ($category->contents as $content)
{
    //some code for each content
}

现在我想写一些关系之外的条件,对于content表格,为了这个关系找到一些内容。我的情况可能多种多样,并从$_GET变量中获取。我必须如何写我的条件

4

1 回答 1

0

您应该使用 CDbCriteria 来执行此操作。这是一个简单的例子:

$criteria = new CDbCriteria;
$criteria->select = 'the columns you need';
$criteria->limit = 5; // the number of row to fetch
$criteria->condition = 'column=:param OR column2="example"';
$criteria->params = array(':param' => $_GET['param'];//bind the param to the condition

//here I am going to add some conditions about the related model
$criteria->with = array(
   'content' => array(
       'select' => 'the columns you need in the related model',
       'condition' => 'column=:param',
       'params' => array(':param' => $_GET['param']),
   ),
);

$category = Category::model()->findAll($criteria);

阅读有关CDbCriteria的 Yii 文档以找到更多选项。yii 指南也有一些例子

于 2013-01-27T12:23:54.533 回答