0

在我的表格中,我有 8-9 个文件。其中所有都是硬编码的,除了一个,它应该来自数据库。

UsersControllers.php(控制器)

public function actionRegister() 
{
    .
    .
    model = new Users();
    $modelUserType=UserType::find()->select(['id', 'type'])->where(['status' => 1])->all();
        return $this->render('register', [
            'model' => $model,
            'modelUserType'=>$modelUserType,
            'module' => $this->module,
      ]);
}

如果我这样做,价值观就会到来print_r($modelUserType);

但是,我不知道在单选按钮的视图中显示所有这些“UserType”表值。

<?=
    $form->field($modelUserType, 'user_type')
    ->radioList(array('1' => 'An Individual', '2' => 'Firm')) // Here.
    ->label('Are You')
?>

register.php(查看)

.
.

<?= $form->field($model, 'password')->passwordInput()->label('Password') ?> 
<?= $form->field($model, 'confirm_password')->passwordInput()->label('Confirm Password') ?>

<?=
    $form->field($model, 'user_type')
    ->radioList(array('1' => 'An Individual', '2' => 'Firm'))
    ->label('Are You')
?>
<?= $form->field($model, 'company_name')->textInput() ?>
.
.

我没有得到任何教程,或者我无法找到正确的教程。需要一点帮助。请帮我。谢谢。

4

1 回答 1

2
public function actionRegister()
    {    
        $model = new Users();
        .
        .
        $modelUserType=UserType::find()->select(['id', 'type'])->where(['status' => 1])->asArray()->all();
    $type=[];
    foreach($modelUserType as $k=>$v){
                   if(is_array($v))$type[$v["id"]]=$v["type"];

    }


 return $this->render('register', [
          'model' => $model,
          'type'=>$type,
          'module' => $this->module,
    ]);
}
于 2015-10-19T16:16:38.183 回答