有人可以帮我找到这个吗?
我想在结果JSON响应中读取以下时间戳(在BOLD中)。 我想复制t的值(响应中的第一次和第二次)。
{"op":"&","c":[{"type":"completion","cm":1254,"e":1},{"type":"completion","cm":27869,"e":1},{"type":"date","d":">=","t":**1426767000**},{"type":"date","d":"<","t":**1458389400**}],"showc":[true,true,true,true]}
这是我的程序代码:
currentnode = matchquiz.SelectNodes("KEY[@name='availability']/VALUE")[0];
if (currentnode != null)
{
mdle_availablefrom = currentnode.FirstChild.Value;
if (mdle_availablefrom != "0")
{
//System.DateTime dtDateTime = new DateTime(1970, 1, 1, 0, 0, 0, 0);
//dtDateTime = dtDateTime.AddSeconds(double.Parse(mdle_availablefrom)).ToLocalTime();
//mdle_availablefrom = dtDateTime.ToString();
}
else
mdle_availablefrom = string.Empty;
}
我已将响应保存在“mdle_availablefrom”中,现在我想在if块中读取两个不同变量中t的值。 t(时间)的值是双倍的。
答案 0 :(得分:1)
为什么不创建表示JSON的对象模型,然后将其用作对象集,对于使用该代码的其他程序员来说,它更具可读性。
我推荐NewtonJSON:)
Deserialize by var model = JsonConvert.DeserializeObject<RootObject>(json);