Int и список Ints как параметры для вызова Asp.Net WebApi - PullRequest
0 голосов
/ 04 июня 2019

Я пытаюсь отправить эти данные в виде JSON Post на контроллер Asp.Net WebApi, который называется Dashboard.Но с этими параметрами я получаю следующую ошибку.Есть идеи, как это исправить?

{
    "errors": {
        "chartType": [
            "Cannot deserialize the current JSON object (e.g. {\"name\":\"value\"}) into type 'System.Collections.Generic.List`1[System.Int32]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly.\r\nTo fix this error either change the JSON to a JSON array (e.g. [1,2,3]) or change the deserialized type so that it is a normal .NET type (e.g. not a primitive type like integer, not a collection type like an array or List<T>) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object.\r\nPath 'chartType', line 2, position 13."
        ]
    },
    "title": "One or more validation errors occurred.",
    "status": 400,
    "traceId": "80000864-0007-fd00-b63f-84710c7967bb"
}

JSON:

{ 
    "ChartType": 1,
    "List": [1,2,3]
}

Код:

public void Dashboard(int chartType, List<int> list)
{
    Console.Write("");
}

1 Ответ

0 голосов
/ 04 июня 2019

Можно попытаться создать класс ViewModel

public class ViewModel
{
    public int ChartType { get; set; }
    public List<int> List { get; set; }
}

Затем использовать атрибут FromBody.

public void Dashboard([FromBody]ViewModel model)
{
    Console.Write("");
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...