3

单击屏幕上的链接时,我打开了一个弹出窗口,具有该链接的视图是 _DetailsS​​urvey。单击链接后,弹出窗口将打开,其中包含 _EditSurvey 视图的内容。在 _EditSurvey 结束时,我有按钮

<input type="submit" value="Save" />

我正在使用 Ajax 选项,单击按钮后,如果模型状态有效,我会在调查表中插入一行。

 @using (Ajax.BeginForm("SubmitSurvey", "Blog", null, new AjaxOptions
    {
    UpdateTargetId = "context",
    InsertionMode = System.Web.Mvc.Ajax.InsertionMode.Replace,
    HttpMethod = "Post",
    Url = "/Home/SubmitSurvey"
    },
    new { surveyItem = @Model }))

我想要做的是如果从 SubmitSurvey 方法返回后模型状态有效,我希望关闭弹出窗口。我使用以下方法来实现这一点,但它不起作用。

    Employee employee;
    if (ModelState.IsValid)
    {

        int employeeId = surveyItem.EmployeeId;
        int trainingId = surveyItem.TrainingId;
        employee = _work.EmployeeRepository.GetSet().
        FirstOrDefault(a => a.Id == employeeId);


        var training = _work.TrainingRepository.GetSet().Where(a => a.EmployeeId == employeeId && a.Id == trainingId).ToList().ElementAt(0);
        training.Survey = surveyItem.survey;
        training.SurveyId = surveyItem.survey.Id;

       /* _work.SurveyRepository.Add(surveyItem.survey);
        _work.SurveyRepository.Save();*/
        _work.TrainingRepository.UpdateAndSave(training);
        _work.TrainingRepository.Save();

    }
    else
    {

        return PartialView("_EditSurvey", surveyItem);
    }
    return JavaScript("window.close()");

我创建我的弹出链接如下

 <tr>
    <td class="view_detail_label">
        Eğitim Adı
    </td>
        <td>

           @Html.ActionLink(
           training.Name.Name, 
           "AddSurvey", 
           new { 
               employeeId = Model.Id, 
               trainingId = training.Id 
           },
           new {
               @class = "addSurvey"
           }
       )
         <div class="result" style="display:none;"></div>             
        </td>            
    </tr>

调用的ajax代码如下:

 $(document).ready(function () {
    $('.addSurvey').click(function () {
        $.ajax({
            url: this.href,
            type: 'GET',
            cache: false,
            context: this,
            success: function (result) {
                $(this).next('.result').html(result).dialog({
                    autoOpen: true,
                    title: 'Anket',
                    width: 500,
                    height: 'auto',
                    modal: true
                });
            }
        });
        return false;
    });
});

在我的弹出视图中,我使用了之前显示的 Ajax BeginForm,在它下面我有一个表格,用户输入调查的值。最后我有提交按钮。

<table id="context">
<tr>
    <td>
        <div class="editor-label">
            @Html.LabelFor(model => model.survey.Context)
        </div>
    </td>
    <td>
        <div class="editor-field">
            @Html.EditorFor(model => model.survey.Context)
            @Html.ValidationMessageFor(model => model.survey.Context)
        </div>
    </td>
   </tr>
 <tr>
        <td>
            <input type="submit" value="Kaydet" />
            </td>
    </tr>

如果提供的输入有任何问题,我会在每个字段旁边显示验证消息。如果模型有效,我想关闭弹出窗口。

4

1 回答 1

2

由于许多原因我不会在这里解释,因此打开弹出窗口是一个非常糟糕的主意。我花了很长时间寻找一个我认为完美的解决方案(对我来说)。

就我而言,我将视图准备为部分视图(没有 html、标题和正文)。只有必要的项目确实在 div 中创建了我的功能。

然后我使用 ajax 查询请求我的部分视图,在我用部分视图字符串提供 div 之后,我将 JQuery 对话框方法应用于 div,以便我的视图显示为浮动对话框,并将 OK 按钮绑定到ajax post 将数据发送到服务器。如果您想让不显眼的验证正常工作,您必须使用验证器解析表单。

我邀请你看看我的框架,你需要的一切都可用。

https://myprettycms.codeplex.com/SourceControl/latest#461106

于 2013-05-20T09:05:03.753 回答