使用JSON.NET将JSON反序列化为匿名对象

本文关键字:JSON 对象 反序列化 NET 使用 | 更新日期: 2023-09-27 18:20:17

我使用JSON.NET确实取消了对对象的解析,但我无法使它与我使用的对象的当前结构一起工作。

http://dorobantu.me/post/2010/08/22/Deserializing-JSON-to-anonymous-types-in-C.aspx

我的对象当前看起来像这样(我想传递一个对象列表)

[
{
    "ID": "Concurrent User",
    "FieldType": 190,
    "value": ""
},
{
    "ID": "System Type",
    "FieldType": 191,
    "value": null
}
]

我收到错误:

Cannot deserialize JSON array into type '<>f__AnonymousType1`3[System.String,System.String,System.String]'.

我需要的是类似于示例#2的东西,一个包含列表的容器对象。感谢您的帮助。感谢

c#代码:

public void GetPoints()
    {
        string inputFields = HttpContext.Current.Request["inputFields"];
       // var test =  new { ID = string.Empty, FieldType = string.Empty, Description = string.Empty };
        var example = new { containerArray = new { ID = string.Empty, FieldType = string.Empty, Description = string.Empty } };
        var fields = JsonConvert.DeserializeAnonymousType(inputFields, example);
    }

javascript:

$('.quoteonly :input').live('change keyup', function () {
        var $container = $('#quoteonly-container');
        var containerObject = {};
        var containerArray = [];
        $container.find('.quoteonly :input').each(function () {
            var fieldType = $(this).data('fieldtype');
            var id = $(this).data('id');
            var currentObject = { 'ID': id, 'FieldType': fieldType };
            switch (fieldType) {
                case 190: //textbox
                    currentObject.value = $(this).val();
                    break;
                case 191: //select
                    currentObject.value = $(this).val();
                    break;
                case 192: //radio
                    currentObject.value = $(this).prop('checked') == true ? 1 : 0;
                    break;
                case 193: //checkbox
                    currentObject.value = $(this).prop('checked') == true ? 1 : 0;
                    break;
            }
            containerArray.push(currentObject);
            containerObject.containerArray = containerArray;
        });
        $.ajax({
            url: '../SentinelOperationsUI/GenericHandler.ashx',
            data: { 'FunctionName': 'GetPoints', 'inputFields': JSON.stringify(containerObject) },
            success: function (data) {
            }
        });
    });

使用JSON.NET将JSON反序列化为匿名对象

  • 1

var DTO = { 'items': JSON.stringify(containerObject) };

$.ajax({
            url: '../SentinelOperationsUI/GenericHandler.ashx',
            data: JSON.stringify(DTO),
            success: function (data) {
            }
        });

如果在您的代码中,您得到的inputFields字符串类似于{items: [{..}]},而不是[{..}, {..}],请跳过这一步。我只是出于mu测试的目的添加了它。重要的是得到一个字符串inputFields,格式为[{..}, {..}]

  • 2

 public void GetPoints()
        {
            string inputFields = HttpContext.Current.Request["items"];
            var test = new[] { new { ID = 0, FieldType = string.Empty, Description = string.Empty } };
            var fields = JsonConvert.DeserializeAnonymousType(inputFields, test);
        }