Я пытаюсь отправить эти данные в виде 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("");
}