0

我的 AJAX 信息很少。这就是为什么我在这里问我的问题......

在 yii2 中如何使用 ajax 验证创建和提交表单?

所以我搜索但找不到正确的解决方案......

例如:(根据官方培训网站)

<?php $form = ActiveForm::begin([
            'id' => $model->formName(),
            'enableAjaxValidation' => true,
]); ?>


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

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

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

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

在控制器中:

    if (Yii::$app->request->isAjax && $model->load(Yii::$app->request->post())) {
        Yii::$app->response->format = 'json';
        return ActiveForm::validate($model);
    } else {
        return $this->render('create', [
            'model' => $model,
        ]);
    }

我的问题:

1- ajax 验证

2-用ajax提交表单

4

1 回答 1

0

为什么不使用 Pjax?使用 yii\widgets\Pjax 并在表单周围添加 Pjax::begin() 和 Pjax::end()。

一个不错的指南在这里: http ://www.yiiframework.com/wiki/772/pjax-on-activeform-and-gridview-yii2/

于 2015-08-09T18:42:47.197 回答