如何添加搜索和筛选条件的Yii(How to add Search and Filter Crite

2019-10-21 23:48发布

我正在开发使用Yii框架数据库应用程序。 我从MySQL数据库中读取表,并将它们显示给用户。 我需要的用户可以筛选域表或搜索特定值。

例如,我有一个名为“超市”表:

CREATE TABLE IF NOT EXISTS `supermarkets` (
  `Name` varchar(71) NOT NULL,
  `Location` varchar(191) DEFAULT NULL,
  `Telephone` varchar(68) DEFAULT NULL,
  `Fax` varchar(29) DEFAULT NULL,
  `Website` varchar(24) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

... /模型/超市:

<?php

namespace app\models;

use yii\db\ActiveRecord;

class Supermarkets extends ActiveRecord
{



}

... /视图/超市/ index.php文件:

<?php
use yii\helpers\Html;
use yii\widgets\LinkPager;
?>
<h1>Supermarkets</h1>
<ul>
<?php
$array = (array) $supermarkets;

function build_table($array){

    // start table

    $html = '<table class="altrowstable" id="alternatecolor">';

    // header row

    $html .= '<tr>';

    foreach($array[0] as $key=>$value){

            $html .= '<th>' . $key . '</th>';

        }

    $html .= '</tr>';

    // data rows

    foreach( $array as $key=>$value){

        $html .= '<tr>';

        foreach($value as $key2=>$value2){

            $html .= '<td>' . $value2 . '</td>';

        }

        $html .= '</tr>';

    }

    // finish table and return it

    $html .= '</table>';

    return $html;

}



echo build_table($array);

?>

....控制器/ SupermarketsController:

<?php

namespace app\controllers;

use yii\web\Controller;

use yii\data\Pagination;
use app\models\Supermarkets;
class SupermarketsController extends Controller
{
    public function actionIndex()
    {
        $query = supermarkets::find();

        $pagination = new Pagination([
            'defaultPageSize' => 20,
            'totalCount' => $query->count(),
        ]);

        $supermarkets = $query->orderBy('Name')
            ->offset($pagination->offset)
            ->limit($pagination->limit)
            ->all();

        return $this->render('index', [
            'supermarkets' => $supermarkets,
            'pagination' => $pagination,
        ]);
    }
}

我需要的用户能够过滤表或通过一个或多个属性搜索的领域。 我怎样才能做到这一点?

Answer 1:

而不是试图重塑您可以简单地使用Yii的车轮提供CGridView部件 。 它具有排序和过滤功能。 检查的文件,你会发现有很多的配置,你可以玩的。 下面的代码片段使用最低配置。

... /视图/超市/ index.php文件:

    <?php
    $this->widget('zii.widgets.grid.CGridView', array(
        'id' => 'supermarkets-grid',
        'dataProvider' => $model->search(),
        'filter' => $model,
        'columns' => array(
            'name',
            'location',
            'telephone',
            'fax',
            'website'
        ),
    ));
    ?>

实现超市模型搜索()函数。

public function search()
{

    $criteria=new CDbCriteria;

    $criteria->compare('name',$this->name,true);
    $criteria->compare('location',$this->location,true);
    $criteria->compare('telephone',$this->telephone,true);
    $criteria->compare('fax',$this->fax,true);
    $criteria->compare('website',$this->website,true);

    return new CActiveDataProvider(get_class($this), array(
        'criteria'=>$criteria,
        'sort'=>array(
            'defaultOrder'=>'name ASC',
        ),
        'pagination'=>array(
            'pageSize'=>20
        ),
    ));
}

控制器/ SupermarketsController :.

public function actionIndex() {
    $model =new Supermarkets('search');
    if(isset($_GET['Supermarkets']))
        $model->attributes =$_GET['Supermarkets'];

    return  $this->render('index', array('model'=>$model));
}


Answer 2:

正确的和更好的方式来组织所有的查询和过滤模型中的类,而不是控制。

您应该使用findAll()而不是find() -找到符合条件的所有记录。 find() -限制为只返回一个记录。

你可以做你以不同的方式所需要的:

  1. 只是要串SQL标准来通过必要的属性进行搜索:

    的findAll( 'NAME = “超市” 或电话= “99988899”')

//搜索超市名称为“超市”或电话 - “99988899”(不qoutes)

  1. 良好的Yii方式使用CDbCriteria:

$标准=新CDbCriteria(); //添加要过滤$基准 - > addCondition( 'NAME = “超市”')的任何atributes; $基准 - > addCondition( '电话= “99988899”', 'OR');

并使用的findAll喜欢的findAll($标准)。

最后 - 刚刚看了一下模型的Yii的手工和用ActiveRecord工作。 它的文档是相当不错的,易于理解。



文章来源: How to add Search and Filter Criteria in Yii