扩展Json.net(Newtonsoft.Json)

前端之家收集整理的这篇文章主要介绍了扩展Json.net(Newtonsoft.Json)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
最近在项目中尝试Json来用于ajax和asp.net之间传递数据,确实方便不少。但也有一些不方便之处。
在我的项目中一个类有太多的属性,有的时候我只想将其中一两个系列化成Json字符串传递到客户端来,Newtonsoft.Json为我们提供了 JsonIgnoreAttribute这个Attribute,但是由于属性太多,大部分属性几乎都贴上了标签实在太麻烦。如下的User类,我只想要 Id和RealName,但对其他属性不得不都贴上标签
public class User
{
privateint_id;
publicId
get{return_id;}
set{_id=value;}
}
string_userName;
[JsonIgnore]
UserName
_userName;}{_userName_pho;
[JsonIgnore]
Pho
_pho;}{_pho_realName;
RealName
_realName;}{_realName_email;
[JsonIgnore]
Email
_email;}{_email_addr;
[JsonIgnore]
Addr
_addr;}{_addr
}
这样实在不怎么雅观,而且很麻烦。
幸亏 Newtonsoft.Json给我们提供了源代码,这样我们就可以扩展她了。我在Newtonsoft.Json添加了两个Attribute:JsonCustomSerializationAttribute是用于贴在类上的,JsonDisplayAttribute是用于贴在字段或者属性上的,当该类贴上了JsonCustomSerializationAttribute标签后,系列化的时候就只会将贴上了JsonDisplayAttribute标签属性或字段给系列化出来,如下:
[JsonCustomSerialization]
_id;
[JsonDisplay]
_userName;
_pho;
_realName;
[JsonDisplay]
_email;
_addr;

}

这个时候只系列化Id和RealName这两个属性
除了添加上面两个attribute外还修改JsonSerializer.cs代码中的307行的位置加入了如下代码
if (objectType.IsDefined( typeof (JsonCustomSerializationAttribute), true ))
@H_225_301@ {
ignored
!member.IsDefined(typeof(JsonDisplayAttribute),true);
}
你也可以根据上面的代码编译自己的版本,如果你像我这样比较懒的话也可以从这里下载我编译好了的版本
/Files/yuyijq/Release.rar 原文链接:https://www.f2er.com/json/290853.html

猜你在找的Json相关文章