0

在选择更改后,我的观点似乎落后了一步。我有一个填充了 getJSON 请求的选择/下拉列表。初始选择后,我在 fiddler 中验证请求成功,但我的视图没有更新。疯狂的是,当我做出另一个选择时,然后视图会用以前的数据更新,并以这种方式继续。我错过了什么?

这是我的 HTML:

<div id="ClientSection">
<p>
    @Html.Label("clientId", "Client")
    @Html.DropDownListFor(x => x.PrimaryClient, Enumerable.Empty<SelectListItem>(), 
                          "Choose Client", new {id = "clientId"})
</p>

<table id="clientLocationsTable">
    <thead>
        <tr>
            <th>Region</th>
            <th>Location</th>
            <th>Address</th>
            <th>Suite</th>
            <th>City</th>
            <th>State</th>
            <th>Zip Code</th>
            <th>Phone #</th>
            <th>Email</th>
            <th>Contact</th>
          </tr>
        </thead>
          <tbody>

          </tbody>
    </table>
</div>

还有我的 JavaScript:

@section scripts
{
<script>
    $(document).ready(function () {

        // populate main client dropdown
        $(function() {
            $.getJSON("/api/client/getclients/", function(data) {
                $.each(data, function (index, clientObj) {
                    $("#clientId").append(
                        $("<option/>").attr("value", clientObj.Id)
                            .text(clientObj.CompanyName)
                    );
                });
            });
        });

        // create new array
        var otherClientLocations = new Array();

        $("#clientId").change(function () {

            // clear table body
            $("#clientLocationsTable > tbody").empty();

            // create new array
            var clientList = new Array();

            // set the id
            var primaryId = $("#clientId").val();

            $.getJSON("/api/client/getclientotherlocations/" + primaryId, function (data) {

                    // populate otherClientLocations Array
                    $.each(data, function(key, val) {
                        clientList.push(val);
                    });
                    otherClientLocations = clientList;
                });


            // create rows if needed
                    if(otherClientLocations.length > 0) {

                        $.each(otherClientLocations, function(key, val) {
                            $("#clientLocationsTable tbody")
                                .append("<tr><td>" + val.CompanyRegion +
                                    "</td><td>" + val.CompanyLocationCode + "</td>"
                            + "<td>" + val.CompanyAddress + "</td>" + "<td>" +
                            val.CompanySuite + "</td><td>" + val.CompanyCity +
                            "</td><td>" + val.CompanyState + "</td><td>" +
                             val.CompanyZipCode + "</td><td>" + val.CompanyPhoneNumber 
                            + "</td><td>" + val.CompanyEmail + "</td><td>" +
                             val.CompanyContactFn + " " + val.CompanyContactLn +
                             "</td>" + "</tr>");
                        });
                    }

        });
    });
</script>
}
4

1 回答 1

1

您没有考虑到异步获取 json 的事实。在从服务器返回 json 之前更新 dom。

尝试:

$(document).ready(function () {

    // populate main client dropdown
    $(function() {
        $.getJSON("/api/client/getclients/", function(data) {
            $.each(data, function (index, clientObj) {
                $("#clientId").append(
                    $("<option/>").attr("value", clientObj.Id)
                        .text(clientObj.CompanyName)
                );
            });
        });
    });

    // create new array
    var otherClientLocations = new Array();

    $("#clientId").change(function () {

        // clear table body
        $("#clientLocationsTable > tbody").empty();

        // create new array
        var clientList = new Array();

        // set the id
        var primaryId = $("#clientId").val();

        $.getJSON("/api/client/getclientotherlocations/" + primaryId, function (data) {

            // populate otherClientLocations Array
            $.each(data, function(key, val) {
                clientList.push(val);
            });
            otherClientLocations = clientList;

            // create rows if needed (the section below has now been moved inside the callback
            if(otherClientLocations.length > 0) {

                $.each(otherClientLocations, function(key, val) {
                    $("#clientLocationsTable tbody")
                        .append("<tr><td>" + val.CompanyRegion +
                            "</td><td>" + val.CompanyLocationCode + "</td>"
                    + "<td>" + val.CompanyAddress + "</td>" + "<td>" +
                    val.CompanySuite + "</td><td>" + val.CompanyCity +
                    "</td><td>" + val.CompanyState + "</td><td>" +
                     val.CompanyZipCode + "</td><td>" + val.CompanyPhoneNumber 
                    + "</td><td>" + val.CompanyEmail + "</td><td>" +
                     val.CompanyContactFn + " " + val.CompanyContactLn +
                     "</td>" + "</tr>");
                });
            }
        });

    });
});

澄清:当 http 请求正在进行时,javascript 执行同时继续。你的版本是这样的:

$.getJSON("/api/client/getclientotherlocations/" + primaryId, function (data) {
  // update array AFTER request is complete
});
// update dom based on value of array while request is still in progress

我已经移动了一些括号,现在它是:

$.getJSON("/api/client/getclientotherlocations/" + primaryId, function (data) {
  // update array AFTER request is complete
  // then update dom based on new version of array
});
于 2013-05-17T21:31:53.153 回答