Yii单选按钮列表:始终将默认值作为选定值

cyvaqqii  于 2022-11-09  发布在  其他
关注(0)|答案(1)|浏览(100)

我有Yii单选按钮列表如下。

忘记密码1.php

<?php echo  $form->radioButtonList($model, 'send_option', $email_exist); ?>

这是针对forgotpassword1的操作。

public function actionForgotpwd2() {
    $model = new User;
    $email_exist = array('mobile' => 'Send SMS to Mobile');
    $model -> setScenario('forgotpwd2');
    $model -> send_option='mobile';

    $postvars = array('conn' => Yii::app()->session['mobile']);
    $postRes = SCAppUtils::getInstance()->post_request('accounts', 'CheckAccount', $postvars);
    $out_arr = json_decode($postRes, true);
    //print_r($out_arr);

    if ($out_arr['success'] == true && $out_arr['email'] == true) {
        $email_exist['email'] = 'Send an E-mail';// = array('mobile' => 'Send SMS to Mobile', 'email' => '');
    } else if ($out_arr['success'] == false) {
        Yii::app()->user->setFlash('error', $out_arr['error']);
        $this->redirect(array('forgotpwd1'));
    }

    if (!empty($_POST['User'])) {
        $model->attributes = $_POST['User'];

        echo Yii::app()->session['mobile'];

        //print_r($_POST);
        if(isset($_POST['User']['send_option'])) {

            //Yii::app()->session['send_option'] = $model->send_option;
            echo Yii::app()->session['send_option'];

            $postvars = array('conn' => Yii::app()->session['mobile'], 'send_type' => $model->send_option);
            $postRes = SCAppUtils::getInstance()->post_request('accounts', 'ChangePassword', $postvars);
            $out_arr = json_decode($postRes, true);

           // print_r($out_arr);

            if ($out_arr['success'] == true) {

                 $this->redirect(array('forgotpwd3'));
            } else {

                Yii::app()->user->setFlash('error', $out_arr['error']);
            }

        }
    }

    $this->render('forgotpwd2', array(
        'model' => $model, 'email_exist' => $email_exist
    ));

}

这里我从我的后端应用程序调用一个名为“ChangePassword()”的函数,传递给后端的参数之一是send_type:问题是它总是将mobile作为send_type。我已经使用了

$model -> send_option='mobile';

将默认值设置为移动的。
为什么它总是把移动的作为发送类型。
如有任何建议,我们将不胜感激。
先谢谢你了

hkmswyz6

hkmswyz61#

请尝试以下操作:

<?=$form->radioButtonList($model,'send_option',array(1=>'Mobile',2=>'Email'))?>

在您的Acion中:

  • 若要设定预设值:
$model -> send_option=1;
  • 要获取选中的值(检查它是1还是2),请执行以下操作:
$_POST['send_option']

相关问题