0

在主页上,我有一个按钮,它使用 activeform 调用引导模式。提交时,此表单会在我的数据库中添加新行。但是我在这个模式和主页上都没有看到成功消息。相反,我进入 mysite.ru/category/create 页面,上面有白屏和对话消息文本(“此处的对话内容......”)。如何不在其他页面上重定向用户?只需在主页上关闭模式和/或重定向,并在此处显示有关成功添加行的 flashmessage。

我在views/site/index.php中的按钮:

<?= Html::button(
        'create',
        ['value' => Url::to(['category/create']),
            'id' => 'modalButton'

        ]) ?>


    <?php
    Modal::begin([
            'id' => 'modal'
        ]);

    echo "<div id='modalContent'></div>";

    Modal::end();
    ?>

我的控制器 SiteController 有:

public function actionIndex()
    { 
            return $this->render('index');
    }

类别控制器有

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

            if ($model->load(Yii::$app->request->post()) && Yii::$app->request->isAjax) {
                $model->refresh();
                Yii::$app->response->format = 'json';
                return ActiveForm::validate($model);
            } elseif ($model->load(Yii::$app->request->post()) && $model->save()) {
                Yii::$app->session->setFlash('contactFormSubmitted');
                //$model->refresh();
                $this->refresh();
                Dialog::begin([
                    'clientOptions' => [
                        'modal' => true,
                    ],
                ]);

                echo 'Dialog contents here...';

                Dialog::end();
                //$this->redirect('category/create');

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

视图/类别/create.php:

<?php

use yii\helpers\Html;


/* @var $this yii\web\View */
/* @var $model app\models\Category */

$this->title = 'Create Category';
$this->params['breadcrumbs'][] = ['label' => 'Categories', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;

?>
<div class="category-create">

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

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

</div>

和意见/类别/_form.php

<?php

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

/* @var $this yii\web\View */
/* @var $model app\models\Category */
/* @var $form yii\widgets\ActiveForm */
?>

<?php
$this->registerJsFile(Yii::getAlias('/scripts/main.js'));

?>

    <?php if (Yii::$app->session->hasFlash('contactFormSubmitted')): ?>

    <div class="alert alert-success">
        Thank you for contacting us. We will respond to you as soon as possible.
    </div>

    <?php endif; ?>



<div class="category-form">

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

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

    <?= $form->field($model, 'description')->textarea(['rows' => 6]) ?>

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

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

</div>

脚本/main.js:

// listen click, open modal and .load content
$('#modalButton').click(function (){
    $('#modal').modal('show')
        .find('#modalContent')
        .load($(this).attr('value'));
});

// serialize form, render response and close modal
function submitForm($form) {
    $.post(
        $form.attr("action"), // serialize Yii2 form
        $form.serialize()
    )
        .done(function(result) {
            form.parent().replaceWith(result);
                        //$form.parent().html(result.message);
            //$('#modal').modal('hide');
        })
        .fail(function() {
            console.log("server error");
            $form.replaceWith('<button class="newType">Fail</button>').fadeOut()
        });
    return false;
}
4

1 回答 1

0

您必须阻止提交表单并使用 ajax。

            $(your_form)
            .on('beforeSubmit', function(event){ 
                event.preventDefault();
                submitForm($(your_form));

                return false;
            })
            .on('submit', function(event){
                event.preventDefault();
            });
于 2017-06-29T12:50:15.077 回答