C#实体对象序列化成Json,格式化,并让字段的首字母小写

2021-06-16 21:06

阅读:329

标签:ctr   date   手动   converter   格式化   res   bapi   opened   对象序列化   

解决办法有两种:
第一种:使用对象的字段属性设置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 = 19 }; 
 var serializerSettings = new JsonSerializerSettings
            {
                // 设置为驼峰命名
                ContractResolver = new CamelCasePropertyNamesContractResolver()
            };
var userStr = JsonConvert.SerializeObject(user, Formatting.None, serializerSettings);
View Code

 

配置返回的时间类型数据格式

技术分享图片技术分享图片
protected void Application_Start()
        {
            GlobalConfiguration.Configure(WebApiConfig.Register);
            ////配置返回的时间类型数据格式  
            //GlobalConfiguration.Configuration.Formatters.JsonFormatter.SerializerSettings.Converters.Add(
            //    new Newtonsoft.Json.Converters.IsoDateTimeConverter()
            //    {
            //        DateTimeFormat = "yyyy-MM-dd hh:mm:ss"
            //    });
        }
View Code

 

C#实体对象序列化成Json,格式化,并让字段的首字母小写

标签:ctr   date   手动   converter   格式化   res   bapi   opened   对象序列化   

原文地址:https://www.cnblogs.com/love201314/p/10344773.html


评论


亲,登录后才可以留言!