Yii2 get post request value not working
问题 Why Yii::$app->request->post() not working? Form: <?php $form = ActiveForm::begin(); ?> <?= $form->field($model, 'parent') ->dropDownList($model->AuthItemDropdown ); ?> <?= $form->field($model, 'child[]') ->dropDownList($model->AuthItemDropdown, ['multiple'=>'multiple'] ); ?> Controller: public function actionCreate(){ $model = new AuthItemChild(); if ($model->load(Yii::$app->request->post())){ $parent = Yii::$app->request->post('parent'); echo $parent; // show nothing $x = Yii::$app->request