我想在_form.php
视图中使用Yii2中的actionCreate
方法渲染静态数组。这是我的代码:
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['view', 'id' => $model->id]);
} else {
$data = array('1'=>'AA','2'=>'BB');
return $this->render('create', [
'model' => $model,
'data' => $data ,
]);
}
当我尝试在_form.php
视图中显示此数据时,我收到错误“未定义变量:数据”。
这是我的_form.php
代码:
<?= $form->field($model, 'fixer_type[]')->dropDownList($data,['prompt'=>'Select Fixer Trade']) ?>
我错过了什么?
答案 0 :(得分:5)
您正在将$data
传递给create.php
。从您的create.php
渲染相同内容,使其在form.php
中可用。
在create.php
<?= $this->render('_form', [
'model' => $model,
'data' => $data ,
]) ?>