5

我在 Yii 中创建了一个 CGridView,它的行是从 XML 文件中读取的。我没有使用任何模型:只有一个控制器(我在其中读取文件)和一个视图(我在其中显示网格)。我无法在网格的第一行创建一个过滤器(每列一个输入字段),以便仅可视化某些行。我该怎么做?

这是我到目前为止所拥有的:

控制器:

<?php
class TestingController extends Controller {
    public function actionIndex() {
        $pathToTmpFiles = 'public/tmp';
        $xmlResultsFile = simplexml_load_file($pathToTmpFiles.'/test.xml');
        $resultData = array();
            foreach ($xmlResultsFile->result as $entry) {
                $chromosome = $entry->chromosome;
                $start = $entry->start;
                $end = $entry->end;
                $strand = $entry->strand;
                $crosslinkScore = $entry->crosslinkScore;
                $rank = $entry->rank;
                $classification = $entry->classification;
                $mutation = $entry->mutation;
                $copies = $entry->copies;
                array_push($resultData, array('Chromosome'=>$chromosome, \
                    'Start'=>$start,  'End'=>$end, Strand'=>$strand, \
                    'Crosslink_Score'=>$crosslinkScore,'Rank'=>$rank, \
                    'Classification'=>$classification, 'Mutation'=>$mutation, \
                    'Copies'=>$copies));
        }
        $this->render('index', array('resultData' => $resultData));
    }
}
?>

看法:

<?php
$dataProvider = new CArrayDataProvider($resultData, \
    array('pagination'=>array('pageSize'=>10,),));

$this->widget('zii.widgets.grid.CGridView', array( 'id' => 'mutationResultsGrid',
    'dataProvider' => $dataProvider, 'columns' => array(
        array(
           'name' => 'Chromosome',
           'type' => 'raw',
       ),
       array(
           'name' => 'Start',
           'type' => 'raw',
       ),
       array(
           'name' => 'End',
           'type' => 'raw',
       ),
       array(
           'name' => 'Strand',
           'type' => 'raw',
       ),
       array(
           'name' => 'Crosslink_Score',
           'type' => 'raw',
       ),
       array(
           'name' => 'Rank',
           'type' => 'raw',
       ),
       array(
           'name' => 'Classification',
           'type' => 'raw',
       ),
       array(
           'name' => 'Mutation',
           'type' => 'raw',
       ),
       array(
           'name' => 'Copies',
           'type' => 'raw',
       ),
    ),
));
?>

感谢您的帮助

4

4 回答 4

6

文件:(FiltersForm.php我把它放在组件文件夹中)

/**
 * Filterform to use filters in combination with CArrayDataProvider and CGridView
 */
class FiltersForm extends CFormModel
{
    public $filters = array();

    /**
     * Override magic getter for filters
     */
    public function __get($name)
    {
        if(!array_key_exists($name, $this->filters))
            $this->filters[$name] = null;
        return $this->filters[$name];
    }

    /**
     * Filter input array by key value pairs
     * @param array $data rawData
     * @return array filtered data array
     */
    public function filter(array $data)
    {
        foreach($data AS $rowIndex => $row) {
            foreach($this->filters AS $key => $value) {
                // unset if filter is set, but doesn't match
                if(array_key_exists($key, $row) AND !empty($value)) {
                    if(stripos($row[$key], $value) === false)
                        unset($data[$rowIndex]);
                }
            }
        }
        return $data;
    }
}

在您的控制器中:

...
$filtersForm = new FiltersForm;
if (isset($_GET['FiltersForm'])) {
    $filtersForm->filters = $_GET['FiltersForm'];
}
$resultData = $filtersForm->filter($resultData);

$this->render('index', array(
    'resultData' => $resultData,
    'filtersForm' => $filtersForm
)}//end action

最后需要什么 - 将过滤器添加到CGridView配置数组:

...
'dataProvider' => $dataProvider,
'enableSorting' => true,
'filter' => $filtersForm,
...
于 2012-12-18T17:06:58.783 回答
1

为什么不将 xml 中的信息存储到数据库并使用 YII ActiveRecord?

在您的情况下,您需要一种实时机制来过滤每个过滤器查询的结果集。与 search() 方法一样,当您使用 YII ActiveRecord 模型时。

因此,您可以在每次过滤器调用时在数组上使用类似 array_filter() 的回调。(编辑:或者这里使用的机制与 stripos 返回匹配的“行”:Yii Wiki

或者,第二种选择,您可以使 xml 解析器依赖于您的过滤器输入,这对我来说感觉不好:)。解析器将不得不解析每个过滤器输入,这可能是大 xml 文件的问题。

或者,如前所述,将信息保存到数据库并使用标准 YII 机制。

于 2012-12-14T09:06:06.540 回答
0

假设您可以使用在 foreach 循环中的对象中获得的数据作为该特定列的过滤器,那么您可以将这些值传递给视图,例如:

<?php
class TestingController extends Controller {
    public function actionIndex() {
        $pathToTmpFiles = 'public/tmp';
        $xmlResultsFile = simplexml_load_file($pathToTmpFiles.'/test.xml');
        $resultData = array();
        foreach ($xmlResultsFile->result as $entry) {
            ...
            $chromosomeFilter[] = $entry->chromosome;
            ...
        }
        $this->render('index', array(
            'resultData'       => $resultData,
            'chromosomeFilter' => $chromosomeFilter,
            ...
        );
    }
}
?>

然后在该列的过滤器中使用该值;

...
array(
    'name'   => 'Chromosome',
    'type'   => 'raw',
    'filter' => $chromosomeFilter,
),
...

我没有测试过,它很大程度上取决于你的 xml 和 的结构$entry->chromosome,但这可能有助于你走上正确的道路吗?

于 2012-12-13T16:23:15.140 回答
0

我遇到了同样的问题,我所做的是实现http://www.datatables.net/ 并远程提取数据。我将排序和分页传递给 javascript 。

于 2014-07-08T09:28:52.797 回答