如何在C#中反序列化多个JSON对象?

时间:2021-10-14 11:23:33

I'm passing multiple JSON objects from my frontend to a C# backend - how can I deserialize them into C# classes so they can be used later on in my application? Before I go any farther, I am tied to using the JS FormData object, contentType: false, and processData: false, because I also need to pass files via this AJAX call; that is completely unrelated to this question. Here's my code so far:

我将多个JSON对象从我的前端传递到C#后端 - 如何将它们反序列化为C#类,以便以后可以在我的应用程序中使用它们?在我走得更远之前,我依赖于使用JS FormData对象,contentType:false和processData:false,因为我还需要通过这个AJAX调用传递文件;这与这个问题完全无关。到目前为止,这是我的代码:

Frontend - function is called when a submit button is pressed

前端 - 按下提交按钮时调用函数

submitData: function () {
    var formCollection = this.appModel.get('formCollection').models;
    var formData = new FormData();
    var formJson = [];
    $.each(formCollection, function (index, form) {
        var tempJson = {};
        if (form) {
            tempJson['id'] = form.get('id');
            tempJson['number'] = form.get('number');
            tempJson['name'] = form.get('name');
            tempJson['attachments'] = form.get('attachments');
            formJson.push(tempJson);
        }
    });
    console.log(JSON.stringify(formJson));
    formData.append('formJson', JSON.stringify(formJson));
    $.ajax({
        type: "POST",
        url: '/NMISProduct/Test',
        contentType: false,
        processData: false,
        data: formData,
        success: function (result) {
            console.log(result);
        }
    });
}

JSON.stringified data that's being passed

正在传递的JSON.stringified数据

[{"id":1,"number":null,"name":"Investment Portfolio Statement","attachments":null},{"id":2,"number":"61-0227","name":"WMC Signature Portfolio Agreement","attachments":null},{"id":3,"number":"61-1126","name":"WMC Signature Choice Agreement","attachments":null},{"id":4,"number":"61-1162","name":"WMC Signature Annuities Agreement","attachments":null},{"id":5,"number":"61-1205","name":"WMC Signature Managed Accounts Client Agreement","attachments":null}]

C# MVC 5 Backend

C#MVC 5后端

[HttpPost]
public async Task<JsonResult> Test()
{
    Debug.WriteLine(Request.Params["formJson"]);
    var forms = JsonConvert.DeserializeObject<Form>(Request.Params["formJson"]);
    Debug.WriteLine(forms);
    try
    {
        var srNumber = GetSRNumber();
        foreach (string file in Request.Files)
        {
            var fileContent = Request.Files[file];
            Debug.WriteLine(ReadFileInputStream(fileContent));
            if (fileContent != null && fileContent.ContentLength > 0)
            {
                // get a stream
                var stream = fileContent.InputStream;
                // and optionally write the file to disk
                //var fileName = Path.GetFileName(file);
                var fileName = fileContent.FileName;
                var path = Path.Combine(Server.MapPath("~/App_Data/"), fileName);
                using (var fileStream = System.IO.File.Create(path))
                {
                    stream.CopyTo(fileStream);
                }
            }
        }
    }
    catch (Exception)
    {
        return Json("Upload failed");
    }
    return Json("File uploaded successfully");
}

public class Form
{
    public int id { get; set; }
    public string number { get; set; }
    public string name { get; set; }
    public Form attachments { get; set; }
    public byte[] fileAsBytes { get; set; }
}

I've done my research and found several * questions that show how to serialize one JSON object into one C# class - however, I need to serialize multiple JSON objects into a List<Form>. How can I do this? What am I doing wrong in the posted code?

我完成了我的研究,发现了几个*问题,展示了如何将一个JSON对象序列化为一个C#类 - 但是,我需要将多个JSON对象序列化为List

。我怎样才能做到这一点?我在发布的代码中做错了什么?

2 个解决方案

#1


7  

You're trying to deserialize to a single form here:

您正尝试在此处反序列化为单个表单:

var forms = JsonConvert.DeserializeObject<Form>(Request.Params["formJson"]);

Just change it to:

只需将其更改为:

var forms = JsonConvert.DeserializeObject<List<Form>>(Request.Params["formJson"]);

You should then be able to use forms in a normal way - iterating over it, taking a count etc.

然后,您应该能够以正常方式使用表单 - 迭代它,计算等。

#2


0  

[HttpPost]
public async Task<JsonResult> Test(List<Form> forms)
{
    // your code here
}

And put your JS code

并把你的JS代码

formJson.push(tempJson);

inside the

在 - 的里面

if (form)

#1


7  

You're trying to deserialize to a single form here:

您正尝试在此处反序列化为单个表单:

var forms = JsonConvert.DeserializeObject<Form>(Request.Params["formJson"]);

Just change it to:

只需将其更改为:

var forms = JsonConvert.DeserializeObject<List<Form>>(Request.Params["formJson"]);

You should then be able to use forms in a normal way - iterating over it, taking a count etc.

然后,您应该能够以正常方式使用表单 - 迭代它,计算等。

#2


0  

[HttpPost]
public async Task<JsonResult> Test(List<Form> forms)
{
    // your code here
}

And put your JS code

并把你的JS代码

formJson.push(tempJson);

inside the

在 - 的里面

if (form)