C#實體對象序列化成Json,格式化,並讓字段的首字母小寫
阿新 • • 發佈:2019-02-01
configure 時間 soft int mes open var prot oba
解決辦法有兩種:
第一種:使用對象的字段屬性設置JsonProperty來實現(不推薦,因為需要手動的修改每個字段的屬性)
public class UserInfo { [JsonProperty("id")] public int Id{ set; get; } [JsonProperty("userName")] public string UserName{ set; get; } }View Code
第二種:使用newtonsoft.json來設置格式化的方式(推薦使用)
var user = new { Name = "john", Age = 19View Code}; var serializerSettings = new JsonSerializerSettings { // 設置為駝峰命名 ContractResolver = new CamelCasePropertyNamesContractResolver() }; var userStr = JsonConvert.SerializeObject(user, Formatting.None, serializerSettings);
配置返回的時間類型數據格式
protected void Application_Start() { GlobalConfiguration.Configure(WebApiConfig.Register); ////配置返回的時間類型數據格式 //GlobalConfiguration.Configuration.Formatters.JsonFormatter.SerializerSettings.Converters.Add( // new Newtonsoft.Json.Converters.IsoDateTimeConverter()View Code// { // DateTimeFormat = "yyyy-MM-dd hh:mm:ss" // }); }
C#實體對象序列化成Json,格式化,並讓字段的首字母小寫