上进行审理
我已经制作了一个自定义的JSON转换器来处理我收到的JSON,但是我在解析嵌套对象列表时遇到了一些麻烦。我的JSON目前看起来像这样:
JSON:
{
"messageID": "1",
"item":
{ "type": "text",
"textlist": [ { "text": "just some text" }]
}
}
在我的情况下,我创建了一些可以转换为的类。我有一个消息类,将转换器应用于该项目。项目属性是一个接口,具有以textItem类的形式实现的接口。
public class Message
{
[JsonProperty("messageID")]
public string messageID { get; set; }
[JsonConverter(typeof(ItemConverter))]
public IItem item { get; set; }
public Message(string msgID, IItem itm)
{
messageID = msgID;
item = itm;
}
}
public class TextItem : IItem
{
[JsonProperty("type")]
public string type { get; set; }
[JsonProperty("textlist")]
public List<Text> textlist { get; set; }
string IItem.Type
{
get => type;
set => type = value;
}
public TextItem(List<Text> txtlst)
{
type = "text";
textlist = txtlst;
}
}
public class Text
{
[JsonProperty("text")]
public string text { get; set; }
public Text(string txt)
{
text = txt;
}
}
有很多不同类型的项目,这就是为什么我有itemConverter:
public class ItemConverter : JsonConverter
{
public override object ReadJson(JsonReader reader,
Type objectType, object existingValue,
JsonSerializer serializer)
{
var jsonObject = JObject.Load(reader);
var item= default(IItem);
switch (jsonObject["type"].Value<string>())
{
case "text":
item= new TextItem(jsonObject["textlist"].Value<List<Text>>());
break;
// omitted non relevant cases
}
serializer.Populate(jsonObject.CreateReader(), item);
return item;
}
}
但是,调用DeserializeObject仅导致错误
JsonConvert.DeserializeObject<Message>(userMessage)
// I get the following error:
System.ArgumentNullException: Value cannot be null.
我所有其他案例(无列表)的处理都很好。关于为什么嵌套列表没有正确转换的任何想法?
您的课程都混乱了,
使用public string type { get; set; }
获取您需要的物品
您的课程可能看起来像这样
public class Textlist
{
public string text { get; set; }
}
public class Item
{
public string type { get; set; }
public List<Textlist> textlist { get; set; }
}
public class RootObject
{
public string messageID { get; set; }
public Item item { get; set; }
}
现在您可以在RootObject