天天看點

Newtonsoft.Json 時間格式設定,替換null為""

Newtonsoft.Json.JsonSerializerSettings jSetting = new Newtonsoft.Json.JsonSerializerSettings();

jSetting.NullValueHandling = Newtonsoft.Json.NullValueHandling.Include;

 jSetting.DateFormatString = "yyyy-MM-dd HH:mm:ss";

 sbContent.Append(JsonConvert.SerializeObject(gameresult, jSetting).Replace(":null,", ":\"\",").Replace(":null},", ":\"\"},"));

繼續閱讀