2

在我的数据库中,我有两个表,制造商和塑料:

CREATE TABLE `manufacturer` (                                                                   
  `id` int(11) NOT NULL AUTO_INCREMENT,                                                                          
  `name` varchar(64) DEFAULT NULL,                                                                               
  PRIMARY KEY (`id`)                                                                                             
) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8

CREATE TABLE `plastic` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(64) NOT NULL DEFAULT '',
  `manufacturer_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`,`manufacturer_id`),
  KEY `manufacturer_id` (`manufacturer_id`),
  CONSTRAINT `plastic_ibfk_1` FOREIGN KEY (`manufacturer_id`) REFERENCES `manufacturer` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=utf8

如您所见,塑料与制造商具有 Yii 所说的 BELONGS_TO 关系——一个制造商可以制造几种不同的塑料。

我试图让从默认塑料管理页面中按制造商名称搜索成为可能,但搜索字段未显示在制造商列中。我遵循了本指南,我想我快到了,但我被困在一个小细节上。

在我的塑料模型类中,根据上面的链接,我有:

class Plastic extends CActiveRecord
{
public $manufacturer_search; //<-- added per the above link

public function rules()
{
    return array(
        array('manufacturer.name', 'length', 'max'=>64),
        array('name', 'length', 'max'=>64),
        array('name, manufacturer.name, manufacturer_search', 'safe', 'on'=>'search'),
    );
}

public function relations()
{
    return array(
        'manufacturer' => array(self::BELONGS_TO, 'Manufacturer', 'manufacturer_id'),
    );
}

public function search()
{
    $criteria=new CDbCriteria;
    $criteria->with=array('manufacturer');
    $criteria->compare('name',$this->name,true);
    $criteria->compare('manufacturer.name',$this->manufacturer_search, true);

    return new CActiveDataProvider($this, array(
        'criteria'=>$criteria,
    ));
}

}

管理页面使用 CGridView 小部件来显示所有内容(这是默认设置,除了 'columns' 属性我没有更改任何内容):

<?php $this->widget('zii.widgets.grid.CGridView', array(
    'id'=>'plastic-grid',
    'dataProvider'=>$model->search(),
    'filter'=>$model,
    'columns'=>array(
        'name',
        'manufacturer.name',
        array(
            'class'=>'CButtonColumn',
        ),  
    ),  
)); ?>

令人抓狂的是搜索确实有效:如果我点击高级搜索,然后在制造商字段中输入一些内容,那就有效了。但我不能让搜索框出现在网格视图中。

是一些截图:当我将manufacturer_id传递到小部件时的管理页面截图,当我像上面的代码一样传递manufacturer.name时的截图,当我传递manufacturer_search时的截图(我没想到无论如何都能工作) ,最后是高级搜索正常工作的截图。

有任何想法吗?谢谢。

4

2 回答 2

5

您必须filter专门为以下内容创建一个$manufacturer_search

<?php $this->widget('zii.widgets.grid.CGridView', array(
    'id'=>'plastic-grid',
    'dataProvider'=>$model->search(),
    'filter'=>$model,
    'columns'=>array(
        'name',
        array(
            'name'=>'manufacturer.name',
            'filter'=>CHtml::activeTextField($model,'manufacturer_search'),
        ),
        array(
            'class'=>'CButtonColumn',
        ),  
    ),  
)); ?>
于 2013-03-10T09:37:10.477 回答
0

如果您只使用“manufacturer_search”作为列的名称,它也可以工作,如您上面提到的教程中所示。

<?php $this->widget('zii.widgets.grid.CGridView', array(
    'id'=>'plastic-grid',
    'dataProvider'=>$model->search(),
    'filter'=>$model,
    'columns'=>array(
        'name',
        array(
            'name'=>'manufacturer_search',
            'value'=>'$data->manufacturer->name'
        ),
        array(
            'class'=>'CButtonColumn',
        ),  
    ),  
)); ?>
于 2013-08-20T19:46:37.823 回答