Yii框架:使用来自相关Active Record模型的数据进行搜索

时间:2012-01-27 09:54:57

标签: php yii

Yii 1.1应用程序开发Cookbook解释了使用相关Active Record Models中的数据搜索相关模型的方法。第193页和第194页解释了这种方法。我试图将此方法集成到我的应用程序中,但它不起作用。任何人都可以解释我Yii框架版本1.1.8中是否仍然可以使用此功能

在这个位置我也可以找到用于搜索相关活动记录模型的数据的注释。但它也行不通。 http://www.yiiframework.com/doc/api/1.1/CDbCriteria

我有订单表和用户表

订单表和用户表具有一对多关系。

用户有很多订单,订单只有一个用户。

因此,我正在编辑CDbCriterial以将用户表名称和电子邮件字段包含在订单表搜索条目中。

订单表有以下关系

public function relations()
{
    // NOTE: you may need to adjust the relation name and the related
    // class name for the relations automatically generated below.
    return array(
        'comments' => array(self::HAS_MANY, 'Comment', 'order_id'),
        'user' => array(self::BELONGS_TO, 'User', 'user_id'),
        'orderstatus' => array(self::BELONGS_TO, 'Orderstatus', 'orderstatus_id'),
        'commentCount' => array(self::STAT, 'Comment' , 'order_id')
    );
}

这是包含用户表名称的搜索/过滤条件

public function search()
    {
        // Warning: Please modify the following code to remove attributes that
        // should not be searched.

        $criteria=new CDbCriteria;

        $criteria->compare('id',$this->id);
        $criteria->compare('order_create_date',$this->order_create_date,true);
        $criteria->compare('price',$this->price,true);
        $criteria->compare('bank_account_number',$this->bank_account_number,true);
        $criteria->compare('hardwaredetail_Id',$this->hardwaredetail_Id);
        $criteria->compare('user_id',$this->user_id);
        $criteria->compare('order_update_date',$this->order_update_date,true);
        $criteria->compare('is_received',$this->is_received);
        $criteria->compare('order_received_date',$this->order_received_date,true);
        $criteria->compare('is_notify_by_email',$this->is_notify_by_email);
        $criteria->compare('warehouse_offered_price',$this->warehouse_offered_price,true);
        $criteria->compare('warehouse_offered_price_date',$this->warehouse_offered_price_date,true);
        $criteria->compare('orderstatus_id',$this->orderstatus_id);
        $criteria->together = true; 
        $criteria->with = array('user');
        $criteria->compare('user.name',$this->user,true);
        //$criteria->compare('user.name',$this->user->name);
        return new CActiveDataProvider($this, array(
            'criteria'=>$criteria,
        ));
    }

和编辑订单管理页面以显示如下字段

<?php $this->widget('zii.widgets.grid.CGridView', array(
    'id'=>'order-grid',
    'dataProvider'=>$model->search(),
    //'filter'=>$model,
    'columns'=>array(
        'id',
        'order_create_date',
        'price',
        'bank_account_number',
        array(
            'name'=>'user',
            'value'=>'$data->user->name'
        ),
       ),
));

返回错误消息

enter image description here

通过应用thaddeusmt给出的解决方案解决了id列模糊问题我面临以下错误消息。

enter image description here

提前感谢您提供任何帮助

2 个答案:

答案 0 :(得分:11)

我能找到答案。这就是我所做的一切。

以下是我的两张桌子。订单和用户

enter image description here

我有订单/管理页面,默认生成的代码仅提供搜索订单表数据。我想在搜索条件中关联用户表名称字段。

这是搜索页面的初始外观。

enter image description here

我想将从其他表中提交的用户名集成到此搜索中。最后的样子将如下。

enter image description here

所以这些是我所做的步骤。

首先在订单模型中我有以下关系

    public function relations()
        {
            // NOTE: you may need to adjust the relation name and the related
            // class name for the relations automatically generated below.
            return array(

                'user' => array(self::BELONGS_TO, 'User', 'user_id'),


            );
        }
This is generated by Yii framework , i did nothing :)

Then , i changed the search method as follows

public function search()
    {
        // Warning: Please modify the following code to remove attributes that
        // should not be searched.

        $criteria=new CDbCriteria;


        $criteria->compare('t.order_create_date',$this->order_create_date,true);
        $criteria->compare('t.price',$this->price,true);
        $criteria->compare('t.bank_account_number',$this->bank_account_number,true);
        $criteria->compare('t.hardwaredetail_Id',$this->hardwaredetail_Id);
        //$criteria->compare('user_id',$this->user_id);

        $criteria->compare('t.order_update_date',$this->order_update_date,true);
        $criteria->compare('t.is_received',$this->is_received);
        $criteria->compare('t.order_received_date',$this->order_received_date,true);
        $criteria->compare('t.is_notify_by_email',$this->is_notify_by_email);
        $criteria->compare('t.warehouse_offered_price',$this->warehouse_offered_price,true);
        $criteria->compare('t.warehouse_offered_price_date',$this->warehouse_offered_price_date,true);
        $criteria->compare('t.orderstatus_id',$this->orderstatus_id);
        $criteria->together = true; 
        $criteria->compare('t.id',$this->id,true);
        $criteria->with = array('user');
        $criteria->compare('name',$this->user,true,"OR");
        return new CActiveDataProvider($this, array(
            'criteria'=>$criteria,
        ));
    }

如果您的订单表主键字段(如果两者都有保存名称),请务必将 t 放在前面。在我的情况下它是id和id,所以我不得不把t。

其他的是元素的顺序

$ criterial-&gt; togeter = true;应该出现在关系元素之前。

然后你更新到Order表中的规则方法。我添加了用户归档和名称归档到安全属性。

public function rules()
    {
        // NOTE: you should only define rules for those attributes that
        // will receive user inputs.
        return array(
            //array(' orderstatus_id', 'required'),
            array('hardwaredetail_Id, user_id, is_received, is_notify_by_email, orderstatus_id', 'numerical', 'integerOnly'=>true),
            array('price, warehouse_offered_price', 'length', 'max'=>10),
            array('bank_account_number', 'length', 'max'=>100),
            array('order_create_date, order_update_date, order_received_date, warehouse_offered_price_date, user,name', 'safe'),
            // The following rule is used by search().
            // Please remove those attributes that should not be searched.
            array('id, order_create_date, price, bank_account_number, hardwaredetail_Id, user_id, order_update_date, is_received, order_received_date, is_notify_by_email, warehouse_offered_price, warehouse_offered_price_date, orderstatus_id', 'safe', 'on'=>'search'),
        );
    }

最后更新您的UI代码。

<?php $this->widget('zii.widgets.grid.CGridView', array(
    'id'=>'order-grid',
    'dataProvider'=>$model->search(),
    'filter'=>$model,
    'columns'=>array(
        'id',
        'order_create_date',
        'price',
        'bank_account_number',
        array(
            'name'=>'user',
            'value'=>'$data->user->name'
        )
)); ?>

我用

更新了订单管理员
array(
                'name'=>'user',
                'value'=>'$data->user->name'
            )

这就是我所做的,它对我有用。问你是否需要帮助。感谢每个人都在关注这个问题。

答案 1 :(得分:2)

看起来userorder都有名为id的列。并且您的条件在WHERE子句中都使用它们,这会给出“模糊的”mySql错误消息。

当使用with条件(执行表的SQL JOIN)时,如果两个表具有相同名称的列,则需要在条件上使用mySql“dot”前缀,如下所示: / p>

$criteria->compare('t.id',$this->id); // the default table prefix in Yii is "t"

当我使用$criteria->with加入表格时,我在所有列名称前加上(在我的comparecondition条件等中)。,如下所示:

$criteria->compare('t.id',$this->id); // t
$criteria->compare('t.order_create_date',$this->order_create_date,true); // t
$criteria->with = array('user');
$criteria->compare('user.name',$this->user_id,true); // user (the filter will set user_id)

您的gridview需要如下所示:

array(
  'name'=>'user_id',
  'header'=>'User',
  'sortable'=>false,
  'value'=>'$data->user->name'
),

此外,我认为存在一个更大的问题,正如您指出编辑:

您的搜索功能设置如下:user.name',$this->user - 但$this->user将通过关系返回当前用户对象,而不是搜索条件。列过滤器将设置user_id属性。

编辑:不,您可以 $this->user作为您的列名,只要您将其设置为safe属性。

我解决这个问题的方式在这里有更详细的说明:

Search in BELONGS_TO model column with CGridView, Yii

虽然排序不适用于 - 只是过滤。

这是Yii论坛上的好文章,也可能为您提供更多线索:

http://www.yiiframework.com/forum/index.php?/topic/9083-search-filter-of-a-relations-field-through-cgridview/

遗憾的是,对关系进行排序和过滤CGridViews并不是真正的默认功能。您可以使用user.name等列名轻松显示相关信息,但不会对其进行排序或过滤。祝你好运!