6

Ajaxフォームである検索フォームがあります。フォーム内にはDropDownListがあり、変更されると、Ajaxフォーム内のPartialViewを(GETリクエストを介して)更新する必要があります。ただし、GETリクエストを介して結果を取得した後、PartialViewを更新するために何をすべきかわかりません。

Search.aspx

<%@ Page Title="" Language="VB" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>

<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
    Search
</asp:Content>

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">

<script type="text/javascript">
    $(document).ready(function () {
        $("#Sections").change(function () {

            var section = $("#Sections").val();
            var township = $("#Townships").val();
            var range = $("#Ranges").val();

            $.ajax({
                type: "GET",
                url: "Search/Search?section=" + section + "&township=" + township + "&range=" + range,
                contentType: "application/json; charset=utf-8",
                dataType: "html",
                success: function (result) {
                    // What should I do here to refresh PartialView?
                }
            });
        });

    });
</script>

    <h2>Search</h2>

    <%--The line below is a workaround for a VB / ASPX designer bug--%>
    <%=""%>
    <% Using Ajax.BeginForm("Search", New AjaxOptions With {.UpdateTargetId = "searchResults", .LoadingElementId = "loader"})%>        
        Township <%= Html.DropDownList("Townships")%>
        Range <%= Html.DropDownList("Ranges")%>
        Section <%= Html.DropDownList("Sections")%>

        <% Html.RenderPartial("Corners")%>

        <input type="submit" value="Search" />        
        <span id="loader">Searching...</span>
    <% End Using%>
    <div id="searchResults"></div> 

</asp:Content>
4

2 に答える 2

7

つまり、PartialViewが表示されないオプションの1つは、PartialViewをdivでラップすることです。

<div id="corners"><% Html.RenderPartial("Corners")%></div>

次に、ajaxにコントローラーのアクションを呼び出して、PartialViewResultを返し、その結果をそのdivにロードします。

$.ajax({
            type: "GET",
            url: "Search/Search?section=" + section + "&township=" + township + "&range=" + range,
            dataType: "html",
            success: function (result) {
                $('#corners').html(result);
            }
        });
于 2010-03-25T17:16:38.497 に答える
0

$ .ajax({type: "GET"、url: "/ Search / Search?section =" + section + "&township =" + township + "&range =" + range、dataType: "html"、success:function(result ){$('#corners')。html(result);}});

于 2014-03-31T07:21:34.990 に答える