首页 > 代码库 > JSON序列化自己主动过滤NULL值
JSON序列化自己主动过滤NULL值
使用Newtonsoft.Json.dll 序列化为json时主动将NULL值过滤掉。详细做法:
var jSetting = new JsonSerializerSettings {NullValueHandling = NullValueHandling.Ignore}; var json = JsonConvert.SerializeObject(response, Formatting.Indented, jSetting);
之前转换的JSON为:
{"header":{"responseCode":"200","responseDesc"":"运行成功","responseDescErrorMsg":""。"responseDescTime":"2015-07-07T13:40:48.7162196+08:00"}。"body":{"order":{"orderid":"S1507070001"},"product":null}}
參加代码后转换出来的为:
{"header":{"responseCode":"200","responseDesc":"运行成功","responseDescErrorMsg":""。"responseDescTime":"2015-07-07T13:40:48.7162196+08:00"},"body":{"order":{"orderid":"S1507070001"}}}
JSON序列化自己主动过滤NULL值
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。