14

我的表格如下

<div id="contact-form" class="hidden" title="Online Request Form">
    @Using (Ajax.BeginForm("Contact", "Main",
                          Nothing,
                          New AjaxOptions With {.UpdateTargetId = "status", .HttpMethod = "post"},
                          New With {.id = "contactUs"}))
        @<div>
            @Html.LabelFor(Function(m) m.Name)<br />
            @Html.TextBoxFor(Function(m) m.Name)<br />
            @Html.LabelFor(Function(m) m.Phone)<br />
            @Html.TextBoxFor(Function(m) m.Phone)<br />
            @Html.LabelFor(Function(m) m.Email)<br />
            @Html.TextBoxFor(Function(m) m.Email)<br />
            @Html.LabelFor(Function(m) m.Question)<br />
            @Html.TextAreaFor(Function(m) m.Question)<br />
            @Html.LabelFor(function(m) m.Security)<br />
            @Html.TextBoxFor(Function(m) m.Security)<br />
            <noscript>
                <input type="submit" name="submit" value="Ok" />
            </noscript>
            @Html.ValidationSummary("Oops, please correct the errors.")<span id="status">@TempData("status")</span>
        </div>
    End Using
</div>

我在 jQuery-UI 模态窗口中打开它

<script>
    $(function () {

        // Open the modal dialog from the div.contact-us click event
        $('#contact-us').click(function () {
            $('#contact-form').dialog('open');
            return false;
        });

        // Manage the modal dialog behavior.
        $('#contact-form').dialog({
            modal: true,
            autoOpen: false,
            buttons: {
                Cancel: function () {
                    $(this).dialog('close');
                },
                Ok: function () {
                    $('form#contactUs').trigger('submit');
                }
            }
        });
    });

</script>

当我单击“确定”按钮时,它正在发布到适当的控制器,但它不是通过 AJAX 发布

    ''# fix the StackOverflow code coloring issue.
    <HttpPost()>
    Function Contact(ByVal contactForm As Models.ContactForm) As ActionResult
        ViewData("Testimonials") = Helpers.GetTestimonials

        If ModelState.IsValid Then
            ''# Submit the email
            TempData("status") = "Thank you, we will be in touch"
        Else
            ''# Return False
            TempData("status") = "Oops, please correct the errors."
        End If


        If Request.IsAjaxRequest Then
            Return Content(TempData("status").ToString)
        Else
            Return View("Index")
        End If
    End Function

我究竟做错了什么?提交表单后,我的 URL 是http://example.com/Main/Contact告诉我IsAjaxRequest = false

编辑

即使我不使用 jquery-ui“确定”按钮并简单地添加<input type="submit" name="submit" value="Ok" />到表单中,表单也会在没有 Ajax 的情况下发布

4

2 回答 2

44

你有 jquery ajax 脚本吗?当我不包含它时,我注意到了这种行为:

<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.min.js")" type="text/javascript"></script>
于 2010-12-18T04:12:13.710 回答
2

我有一段时间没有使用 ASP.NET MVC AJAX 助手,但我相信在生成的 (HTML) 标记中 Ajax.BeginForm添加了一个内联处理程序。onsubmit

如果是这种情况,以编程方式在此表单上调用提交(您的触发submit事件的 jQuery)将不会调用onsubmit表单的函数,这很可能会取消正常的提交操作并通过 AJAX 提交表单。

有关为什么会发生这种情况的更多信息,请查看此相关答案

作为替代方案,您可以使用 AJAX 发布表单

我发现这两种方法中的任何一种都比使用 Microsoft 的 AJAX 助手更轻松。

于 2010-12-18T04:00:27.593 回答