我有一个班级
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中写什么
答案 0 :(得分:89)
假设您的整数为0,375,668,5和6:
{
"Id": "610",
"Name": "15",
"Description": "1.99",
"ItemModList": [
0,
375,
668,
5,
6
]
}
我建议您将“Id”:“610”更改为“Id”:610因为它是整数/长而不是字符串。您可以在此处阅读有关JSON格式和示例的更多信息http://json.org/
答案 1 :(得分:15)
JSON完全能够表达整数列表,并且您发布的JSON是有效的。您只需用逗号分隔整数:
{
"Id": "610",
"Name": "15",
"Description": "1.99",
"ItemModList": [42, 47, 139]
}