用于 int 列表的 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 的 list 输入 JSON,因为它没有一个键来匹配它的值

JSON

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

我应该在 ItemModList 中写什么

337176 次浏览

JSON 完全能够表达整数列表,并且您发布的 JSON 是有效的。你可以简单地用逗号分隔整数:

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

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

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

我建议您将“ Id”: “610”改为“ Id”: 610,因为它是一个整数/long 而不是字符串。您可以在这里阅读更多关于 JSON 格式和示例的内容 http://json.org/