我确信这个问题的答案非常简单,但我遇到了麻烦。我有以下 JSON 字符串(由 Yahoo Fantasy Sports API 提供),我试图将其从 JSON.NET JToken 解析为我的模型对象。因为我不想在我的项目中乱扔一堆专门支持 JSON 解析的类,所以我正在尝试手动执行此操作。但是,我一生无法在代码中弄清楚如何确定我是在设置案例还是团队案例中。帮助?
{
"league":[
{
"league_key":"somevalue",
"name":"My League"
},
{
"teams":{
"0":{
"team":[
[
// some data
]
]
},
"1":{
"team":[
[
// some data
]
]
},
"count":2
}
}
]
}
以下是我用于解析的代码(到目前为止):
public League ParseJson(JToken token)
{
var league = new League();
if (token.Type == JTokenType.Array)
{
foreach (var child in token.Children<JObject>())
{
// how do I figure out if this child contains the settings or the teams?
}
return league;
}
return null;
}
我不想对其进行硬编码,因为我可能会从联盟加载更多/不同的子资源,因此不能保证它总是包含这种结构。