簡體   English   中英

MVC AJAX發布發送更新的模型數據

[英]MVC AJAX post sending updated model data

在某些屬性的值更改后,我嘗試將帶有Model數據的發布請求發送給Action:

@{
  JsonSerializerSettings jss = new JsonSerializerSettings { 
  ReferenceLoopHandling = ReferenceLoopHandling.Ignore };
}

<div id="contents">

    <!--Lead Stage-->
    @if (Model.LeadStagesNav != null)
    {
        for (int i = 0; i < Model.LeadStagesNav.Count; i++)
        {

            @Html.HiddenFor(a => a.LeadStagesNav[i].PermissionId)

            <div class="form-group" style="margin-bottom:10px">
                @Html.Label("Lead Stage", new { @class = "col-md-2" })
                <div style="display:inline-block;position:relative">
                    @Html.DropDownListFor(model => model.LeadStagesNav[i].Name, null, new { @class = "form-control", @style = "width:200px", onchange = "ChangeValue()" })
                </div>

                @if (ViewData["LeadStagesNav[" + i + "].LeadStatus"] != null)
                {
                        <!--Lead Status-->
                    @Html.Label("Lead Status", new { @style = "margin-left:15px;margin-right:15px" })
                    <div style="display:inline-block;position:relative">
                        @Html.DropDownListFor(model => model.LeadStagesNav[i].LeadStatus, null, new { @class = "form-control", @style = "width:200px", onchange = "ChangeValue()" })
                    </div>

                    if (ViewData["LeadStagesNav[" + i + "].LeadSubStatus"] != null)
                    {
                        @Html.Label("Lead Sub Status", new { @style = "margin-left:15px;margin-right:15px" })
                        <div style="display:inline-block;position:relative">
                            <!--Lead Sub Status-->
                            @Html.DropDownListFor(model => model.LeadStagesNav[i].LeadSubStatus, null, new { @class = "form-control", @style = "width:200px" })
                        </div>
                    }
                }

            </div>

                <!--Delete Button-->
            <div class="form-group">
                <div class="col-md-offset-2 col-md-10">
                    <input type="submit" value="Delete Lead Stage"
                           onclick="document.getElementById('index').value = @i"
                           name="submit" class="btn btn-default" />
                    <input type="hidden" id="index" name="index" />
                </div>
            </div>
            }
        }

</div> 

<script type="text/javascript">

window.ChangeValue = function () {

    var model = @Html.Raw(JsonConvert.SerializeObject(Model, Formatting.Indented, jss));

    $.ajax({
        method: "POST",
        url: "/CmsPermissions/Edit",
        data: { permission: model },
        success: function (data) {
            $("#contents").html(data);
        },
        error: function (XMLHttpRequest, textStatus, errorThrown) {
            alert(errorThrown);
        }
    });
};

問題是,在下拉選擇值更改后,我將舊模型數據發布到了Action而不是新數據,有人知道嗎?

那是因為您將舊模型作為數據傳遞

 var model = @Html.Raw(JsonConvert.SerializeObject(Model, Formatting.Indented, jss));

您需要序列化表格並將其傳遞給一個示例,

function SubmitForm() {
    var data = $("#YourFormID").serialize();
    var url = "/YourURL/ACtion"
    var form = $('#policyForm')[0]
    var formdata = false;
    if (window.FormData) {
        formdata = new FormData(form);
    }
  return  $.ajax({
        url: url,
        type: 'POST',
        dataType: 'json',
        data: formdata ? formdata : data,
        cache: false,
        contentType: false,
        enctype: 'multipart/form-data',
        processData: false, 
        error: function () {
            $('#imgLoadingForPortal').modal('hide');
            Lobibox.notify('error', {
                size: 'mini',
                rounded: true,
                delay: false,
                position: 'center top', //or 'center bottom'
                msg: 'Something went wrong..please try again later',
                sound: false,
                delay: 5000,
            });
        }

    })

}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM