0

我有一个带有 CGrideView 的管理页面,但是当我想更改我的按钮列以添加一些其他按钮时会出现此错误:CButtonColumn 及其行为没有名为“getId”的方法或闭包。

管理员操作:

    public function actionAdmin()
    {
        $model=new Block('search');
        $model->unsetAttributes();  // clear any default values
        if (isset($_GET['Block'])) {
            $model->attributes=$_GET['Block'];
        }

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

管理员视图:

 $this->widget('zii.widgets.grid.CGridView', array(
    'id'=>'block-grid',
    'dataProvider'=>$model->search(),
    'filter'=>$model,
    'columns'=>array(
        'name',
        'content',
        'type',
        'enable',
        array(
            'class'=>'CButtonColumn',
            'template' => '{view}{update}',
            'buttons' => array(
                'update' => array(
                    'url' => 'Yii::app()->controller->createUrl("update", array("name"=>$data->name))'
                ),
                'view' => array(
                    'url'=>'CController::createUrl("view", array("name"=>$data->name))'
                ),
            ),
        ),
)));
4

2 回答 2

1

解决了!原因在于:

        'view'=>array(
         'url'=>'CController::createUrl("view",array("name"=>$data->name))'
        ),

它应该是 :

                'view'=>array(
                'url'=>'Yii::app()->controller->createUrl("view", array("name"=>$data->name))'
            ),

为什么?因为 (): 因为 Yii::app()->controller 它是当前应用程序的实例控制器。控制器具有私有属性 $_id。CController::createUrl 它只是静态方法。在方法 createUrl() 中调用方法 $this->getId(),但是当您调用静态方法实例时未创建 -@DanilaGanchar 。

所以在 CController::createUrl 它找不到控制器的 id 并且为了使用我应该给它这样的参数 CController::createUrl("/page/view",array("name"=>$data->name ))我现在尝试并工作

于 2015-08-15T11:27:00.663 回答
0

元素的顺序template必须等于元素的顺序buttons。你有{view}{update}as template,但你update首先定义了按钮!所以我认为'template'=>'{view}{update}'改成'template'=>'{update}{view}'可能可以解决你的问题。

于 2015-08-15T10:38:21.347 回答