我的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
答案 0 :(得分:0)
为什么不使用Pjax?使用yii \ widgets \ Pjax并在表单周围添加Pjax :: begin()和Pjax :: end()。
这里的体面指南: http://www.yiiframework.com/wiki/772/pjax-on-activeform-and-gridview-yii2/