JSON序列化自己主动过滤NULL值

Posted zhchoutai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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值的主要内容,如果未能解决你的问题,请参考以下文章

json串中怎么把值为null的属性过滤掉

iOS开发——model类模板(过滤null和ID)

返回json时,字段为null的处理方式

spring3.0 怎么把json里面的null值替换成空字符串

HTTP转换为null什么意思?

.NET Core 处理 WebAPI JSON 返回烦人的null为空