jquery ajax调用后,MVC视图没有正确更新

MVC view does not update properly after jquery ajax call

本文关键字:更新 视图 MVC ajax 调用 jquery      更新时间:2023-09-26

我有一个容器,我通过ajax调用填充该容器,该调用返回列表的PartialView。我有两个调用:CreateSplitInput和RemoveSplit。

对控制器的调用似乎有效,并且传递给局部视图的模型是正确的,具有正确的子列表。在调试期间,视图似乎会返回正确的html。

添加新输入我没有问题。。。删除输入项只会"弹出"列表的最后一项。


更新:MVC将首先检查ModelState,然后检查Model。我需要在RemoveSplit控制器方法中添加ModelState.Clear()。

归功于awrigley MVC 3+$.ajax-响应似乎缓存了部分视图的输出


TIA!!!

型号:

public class Split
{
    public int SplitID { get; set; }
    public int ClientProfileID { get; set; }
    public int CoveredPersonID { get; set; }
    public DateTime StartDate { get; set; }
    public DateTime? EndDate { get; set; }
    public virtual List<SplitPercent> Percentages { get; set; }
}
public class SplitPercent
{
    public int SplitPercentID { get; set; }
    public int SplitID { get; set; }
    public string PremiumKeyField { get; set; }
    public decimal Percentage { get; set; }
}

控制器:

public ActionResult CreateSplitInput(Split model)
    {
        if (model.Percentages == null)
            model.Percentages = new System.Collections.Generic.List<SplitPercent>();
        model.Percentages.Add(new SplitPercent());
        return PartialView("~/views/clients/_SplitPercentages.cshtml", model);
    }
public ActionResult RemoveSplit(Split model, int index)
    {
        ModelState.Clear(); // <== HERE IS THE ANSWER!!!!!
        if (model.Percentages != null && model.Percentages.Count >= (index + 1))
        {
            model.Percentages.RemoveAt(index);
        }
        return PartialView("~/views/clients/_SplitPercentages.cshtml", model);
    }

Javascrpt:

function addSplit() {
        if (true) { // testing purposes
            $.ajax({
                url: '/clients/CreateSplitInput',
                data: $("#frm").serialize(),
                cache: false,
                success: function(resp) {
                    setSplitContainer(resp);
                },
                error: function(err, status) {
                    alert(status);
                }
            });
        }
    }
function removeSplit(indx) {
        if (true) { // testing purposes
            $.ajax({
                url: '/clients/RemoveSplit/?index=' + indx,
                data: $("#frm").serialize(),
                cache: false,
                type: 'GET',
                success: function(resp) {
                    //debugger;
                    setSplitContainer(resp); //<-- the resp html just has the last item popped off
                },
                error: function(err, status) {
                    alert(status);
                }
            })
        }           
    }
function setSplitContainer(h) {
        $("#splitPercents").html(h);
        $("select").chosen(chosenOpts);
    }

_SplitPercentages.cshtml PartialView:调试它将显示正确的Percentages集合。。。似乎正确绑定。

@model BillingWeb.Models.Split

@if (Model != null && Model.Percentages != null)
{
    var logic = new ClientLogic();
    var premiumKeys = logic.GetAllPremiumKeyFields(Model.ClientProfileID);
    string test = "";
    int index = 0;
    foreach (var percent in Model.Percentages)
    {
        test += ", " + percent.PremiumKeyField; // <- collect the model data to show at the end
        var selectList = new SelectList(premiumKeys, percent.PremiumKeyField); // Trying anything now...
        <div class="form-group">
            @Html.Hidden("Percentages.Index", index)
            @Html.Hidden(string.Format("Percentages[{0}].SplitID", index), percent.SplitID)
            <div class="col-md-5 col-lg-5">
                @Html.DropDownListFor(m => m.Percentages[index].PremiumKeyField, selectList, new { @class = "form-control" })
            </div>
            <div class="col-md-4 col-lg-4">
                <div class="input-group">
                    <span class="input-group-addon">%</span>
                    @Html.TextBoxFor(m => m.Percentages[index].Percentage, new { @class = "form-control text-right", placeholder = "Split %" })
                    <button type="button" class="btn btn-danger input-group-addon" onclick="removeSplit(@index)">
                        <span class="glyphicon glyphicon-remove"></span>
                    </button>
                </div>
            </div>
        </div>
        index++;
    }
    <p>@test</p> <!-- WTH?! this works? -->
}

主视图:

@model BillingWeb.Models.Split
    <div class="form-group">
        <label class="control-label col-md-2">Percentages</label>
        <div class="col-md-8">
            <div id="splitPercents">
                @Html.Partial("~/Views/Clients/_SplitPercentages.cshtml", Model)
            </div>
            <button type="button" class="btn btn-primary" onclick="addSplit()">Add Split</button>
        </div>
    </div>

经过更多的挖掘,我发现MVC会先检查ModelState,然后再检查Model。

来源:awrigley对MVC 3+$.ajax-响应似乎是缓存部分视图的输出