Using JSON to Serialize/Deserialize TimeSpan(使用 JSON 序列化/反序列化 TimeSpan)
问题描述
我正在尝试使用 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 JSON 序列化/反序列化 TimeSpan


基础教程推荐
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01