dongzhukuai8177 2015-12-29 02: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 03: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,
            ]);
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部