问题描述
我正在尝试使用 Newtonsoft.Json 反序列化/序列化时间跨度.JsonConvert,但是当发送 JSON 时,它被设置为 00:00:00.
I'm trying to deserialize/serialize a timespan with Newtonsoft.Json.JsonConvert, but when the JSON is sent it's set to 00:00:00.
这有可能吗?
推荐答案
我想通了,显然是MS设计缺陷...
I figured it out, Apparently it's a MS design flaw...
因为 TimeSpan 不能是无参数对象.XML 无法重新创建它.
Since TimeSpan cannot be a parameterless object. XML cannot recreate it.
看看这个网站.http://forums.silverlight.net/forums/p/51793/135450.aspx
所以.因此无法转换 TimeSpan.一个简单的方法是将时间跨度更改为字符串,然后将字符串发送过来.并使用 TimeSpan.TryParse(String);
So. Therefore TimeSpan cannot be converted. An easy way to do this is to change the timespan into a string, and then send the string over. and use TimeSpan.TryParse(String);
这篇关于使用 JSON 序列化/反序列化 TimeSpan的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!