WCF DataContractJsonSerializer 并将 DateTime 对象设置为 UTC?
是否有通用方法来指示 DataContractJsonSerializer 使用 UTC 日期?否则,我必须将 .ToUniversalTime() 添加到我的所有日期实例中。这可能吗?原因是日期值默认为 DateTimeKind.Local 并向 JSON 结果添加偏移量。使日期通用确实可行,但可以在全球范围内完成吗?谢谢。
Is there a universal way to instruct the DataContractJsonSerializer to use UTC for dates? Otherwise, I have to add .ToUniversalTime() to all of my date instances. Is this possible? The reason is that date values are defaulting DateTimeKind.Local and adding offsets to the JSON result. Making the dates universal does the trick, but can it be done at a global level? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有办法直接在全局级别执行此操作 - 原始类型(例如 DateTime)无法“代理”。一种可能的解决方法是在序列化对象时使用某种反射和代理来更改对象中的 DateTime 字段(或属性),如下面的示例所示。
There's no way to do that directly at the global level - primitive types (such as DateTime) can't be "surrogated". A possible workaround is to use some kind of reflection along with a surrogate to change the DateTime fields (or properties) in an object when it's being serialized, as shown in the example below.