javascriptserializer日期格式问题
我正在将具有许多其他类型和列表属性的复杂对象序列化为 JSON 形式,但问题在于 DateTime 属性。我使用 JavascriptSerializer 获取纪元时间(而不是 mm/dd/YYYY)。
有什么方法可以获取 mm/dd/YYYY : HH.MM.SS 形式的日期时间,而不修改我正在序列化的对象的类定义。
I am serializing a complex object with lot of properties of other Types and Lists to JSON form but the issue is with DateTime properties. I get the epoch time with JavascriptSerializer (rather than mm/dd/YYYY).
Is there any way I can get the datetime in mm/dd/YYYY : HH.MM.SS form without modifying the class defination of the object i am serialzing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果不修改底层类,则无法使用 JavaScriptSerializer 来实现这一点。这可以通过 Json 来实现。网。
This cannot be achieved using
JavaScriptSerializer
and without modifying the underlying class. This could be achieved with Json.Net.有一个解决方案,可以使用序列化器对象上的 RegisterConverters 方法。
.NET JavaScriptSerializer 的自定义日期时间 JSON 格式
只需创建一个继承 JavaScriptConverter 的类并实现您自己的 DateTime 对象序列化即可。
然后像这样序列化:
result = {"date":"2019-10-25T11:49:58.7322411Z"}
行
更改自定义版本的 DateTime 的
。链接中的类:
There is a solution to this using the RegisterConverters method on the serializer object.
Custom DateTime JSON Format for .NET JavaScriptSerializer
You just create a class that inherit JavaScriptConverter and implement your own serialization of the DateTime object.
And then serialize like this:
result = {"date":"2019-10-25T11:49:58.7322411Z"}
Change the line
for your custom version of the DateTime.
The class from the link: