How to deserialize multiple JSON objects in C #?

I am passing several JSON objects from my interface to a C # server - how can I deserialize them to C # classes so that they can be used later in my application? Before moving on, I am bound to a JS object FormData, contentType: falseand processData: falsebecause I also need to transfer files through this AJAX call; which is completely unrelated to this issue. Here is my code:

Frontend function - called when the 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);
        }
    });
}

Transmitted JSON.stringified data

[{"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

[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; }
}

Stackoverflow, , JSON #, JSON List<Form>. ? ?

+4
2

:

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

:

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

forms - , ..

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

JS-

formJson.push(tempJson);

if (form)
0

All Articles