小编典典

用于int列表的JSON

json

我有一堂课

public class ItemList
{
    public long Id { get; set; }
    public string Name { get; set; }
    public string Description { get; set; }
    public List<int> ItemModList { get; set; }
}

我应该如何为int列表提供输入JSON,因为它没有匹配其值的键

JSON格式

{
    "Id": "610",
    "Name": "15",
    "Description": "1.99",
    "ItemModList": []
}

我应该在ItemModList中写什么


阅读 412

收藏
2020-07-27

共1个答案

小编典典

假设您的整数是0、375、668,5和6:

{
    "Id": "610",
    "Name": "15",
    "Description": "1.99",
    "ItemModList": [
                       0,
                       375,
                       668,
                       5,
                       6
                   ]
}

我建议您将“ Id”:“ 610”更改为“
Id”:610,因为它是整数/长整数而不是字符串。您可以在http://json.org/上阅读有关JSON格式和示例的更多信息。

2020-07-27