dongzhukuai8177 2015-12-29 10:19
浏览 73
已采纳

单击按钮后如何更改字段ActiveForm中的值?

How change value 'userid' in field ActiveForm after click on button?

How it make?

I need to check field 'userid' and change value.

I not know how it make.


View:

_Form.php

<?php

use yii\helpers\Html;
use yii\widgets\ActiveForm;

?>

<div class="account-form">

    <?php $form = ActiveForm::begin(); ?>

    <?= $form->field($model, 'userid')->textInput(['maxlength' => true])?>

    <div class="form-group">
        <?= Html::submitButton($model->isNewRecord ? 'Create' : 'Update', ['class' => $model->isNewRecord ? 'btn btn-warning' : 'btn btn-primary']) ?>
    </div>

    <?php ActiveForm::end(); ?>
</div>

Create.php

<div class="account-create">

    <h1><?= Html::encode($this->title) ?></h1>

    <?= $this->render('_form', ['model' => $model,]) ?>

</div>

Controller:

AccountController.php

class AccountController extends Controller
{

public function actionCreate()
    {
        $model = new Account();

        if ($model->load(Yii::$app->request->post() && $model->save())) {

         return $this->redirect(['view', 'id' => $model->userid]);
        } else {

            return $this->render('create', [
                'model' => $model,
            ]);
        }
    }

}

Model:

Account.php

class Account extends \yii\db\ActiveRecord
{

    public function rules()
    {

        return [
            [['userid'], 'required']
        ];
    }

}
  • 写回答

1条回答 默认 最新

  • duanqun9618 2015-12-29 11:06
    关注

    Try this in your controller:

    public function actionCreate()
    {
        $model = new Account();
    
        if (isset($_POST['Account']){
    
            $model->attributes = $_POST['Account'];
            $model->userid = 123;
    
            /* in case you had errors
            // $model->validate();
            // var_dump($model->getErrors());
            */
    
            if($model->save()){
    
                return $this->redirect(['view', 'id' => $model->userid]);
            }
        }
        else{
    
            return $this->render('create', [
                'model' => $model,
            ]);
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?