首页 > 学院 > 开发设计 > 正文

Newtonsoft.Json.dll序列化为json,null值自动过滤

2019-11-17 01:25:02
字体:
来源:转载
供稿:网友

Newtonsoft.Json.dll序列化为json,null值自动过滤

var jSetting = new JsonSerializerSettings {NullValueHandling = NullValueHandling.Ignore};var json = JsonConvert.SerializeObject(response, Formatting.Indented, jSetting);

之前转换的JSON为:

{"header":{"rspCode":"0000","rspDesc":"执行成功","rspErrorMsg":"","rspTime":"2014-03-05T13:40:48.7162196+08:00"},"body":{"order":{"orderid":"S0000001"},"PRoduct":null}}

加入代码后转换出来的为:

{"header":{"rspCode":"0000","rspDesc":"执行成功","rspErrorMsg":"","rspTime":"2014-03-05T13:40:48.7162196+08:00"},"body":{"order":{"orderid":"S0000001"}}}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表