asp.net-mvc – ASP.Net MVC 3 – JSON模型绑定到数组

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – ASP.Net MVC 3 – JSON模型绑定到数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在ASP.Net MVC 3,并且在支持功能列表中,我应该能够获得默认的json模型绑定工作开箱即用。然而,我没有成功地将json的数组/集合绑定到action方法参数。虽然我确实得到了简单的json对象绑定工作权限。非常感谢,如果一位专家在这里可以告诉我我做错了什么。

这是代码

服务器端代码第一:

//动作方法

public JsonResult SaveDiscount(IList<Discount> discounts)
    {
       foreach(var discount in discounts)
       {
       ....
       }
    }

//查看模型

public class Discount
{
    string Sku{get; set;}
    string DiscountValue{get; set;}
    string DiscountType{get; set;}

}

//客户端(jquery / js):

var discount = {};
    var jsondatacoll = [];
    $('#discountgrid tr').each(function () {

        sku = $(this).find("td").eq(1).html();
        discValue = $(this).find('.discval').val();
        discType = $(this).find('.disctype').val();

        discount = { Sku: sku,DiscountType: discType,DiscountValue: discValue};
        jsondatacoll.push(discount);
        }
    })
    if (jsondatacoll.length > 0) {
        var catalogDiscount = JSON.stringify(jsondatacoll);

        $.ajax(
        {
            url: '/url/savediscount',type: 'POST',data: catalogDiscount,dataType: 'json',contentType: 'application/json; charset=utf-8',success: function (data,textStatus,jqXHR) {
                ...                   
            },error: function (objAJAXRequest,strError) {                 
               ...
            }
        }
     );   //ajax
    }

我检查了提琴手的json有效载荷,它看起来像下面:

[
    {"Sku":"sku1","DiscountType":"type1","DiscountValue":"10"},{"Sku":sku2","DiscountValue":"12"},{"Sku":"sku3","DiscountType":"type2","DiscountValue":"40"}
]

而在服务器端,我确实看到了IList< Discount>折扣已经填充了3个空的折扣对象 – 这意味着属性为null,但折扣参数的长度为3。

解决方法

正如 Cresnet Fresh在对问题的评论中正确指出的那样,模型属性必须标注为public。

所以修改折扣类如下解决了这一点。

public class Discount
{
    public string Sku{get; set;}
    public string DiscountValue{get; set;}
    public string DiscountType{get; set;}

}
原文链接:https://www.f2er.com/aspnet/252601.html

猜你在找的asp.Net相关文章