栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C# > C#教程

newtonsoft.json解析天气数据出错解决方法

C#教程 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

newtonsoft.json解析天气数据出错解决方法

今天用NewtonSoft.JSon解析一个天气数据,数据格式如:
复制代码 代码如下:
{"status":1,"detail":"u6570u636eu83b7u53d6u6210u529f","data":[[{"date":"2014-01-01","dis_id":"1119","dis_name":"u5f90u5ddeu5e02","url":"http://www.tianqiyubao.com/local.php?dis_id=1119","weather":"1","wind":"u897fu98ce3-4u7ea7","weather_name":"u6674","weather_pic":"styles/images/icon2/day/1.png","humidity":"","tem_min":"1","tem_max":"13","sunrise":"07:17","sunset":"17:12","pm":"109","air":"u826f","day_night":[{"date":"2014-01-01","dis_id":"1119","dis_name":"u5f90u5ddeu5e02","url":"http://www.tianqiyubao.com/local.php?dis_id=1119","weather":"1","wind":"u897fu98ce3-4u7ea7","weather_name":"u6674","weather_pic":"styles/images/icon2/day/1.png","humidity":"","tem":"13"},{"date":"2014-01-01","dis_id":"1119","dis_name":"u5f90u5ddeu5e02","url":"http://www.tianqiyubao.com/local.php?dis_id=1119","weather":"1","wind":"u5317u98ce3-4u7ea7","weather_name":"u6674","weather_pic":"styles/images/icon2/night/1.png","humidity":"","tem":"1"}]}]]}

结果就老报一个错误。

复制代码 代码如下:
Cannot deserialize JSON array (i.e. [1,2,3]) into type 'SweetWeather.MoreDayWeatherInfoFullDay'.
The deserialized type must be an array or implement a collection interface like IEnumerable, ICollection or IList.
To force JSON arrays to deserialize add the JsonArrayAttribute to the type. Path 'data[0]', line 1, position 69.

最后还是报错。仔细发现有两个方框号,原来是自己实体类的设计有问题,

原实体类:

复制代码 代码如下:
public string status { get; set; }
public string detail { get; set; }
public List data { get; set;

更正后的实体类:

复制代码 代码如下:
public string status { get; set; }
public string detail { get; set; }
public List> data { get; set; }

正确无误了。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/126585.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号