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でフォームを送信