如何处理 .NET 生成的 JSON 中的 Infinity
.NET Json 序列化程序将 Double.PositiveInfinity 等序列化为 Infinity 之类的内容,这些内容不是有效的 JSON。我现在尝试使用 Json.NET 将对象序列化为 JSON,但我想对其进行包装,以便将 Infinity 等值转换为 NULL 或字符串“Infinity”。我该怎么做呢?
The .NET Json serializer serializes Double.PositiveInfinity and the like to things like Infinity, which aren't valid JSON. I'm now trying to use Json.NET to serialize an object to JSON, but I'd like to wrap it so that values like Infinity get converted to NULL, or the string "Infinity". How do I go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行此操作的唯一方法是将 Double 值序列化为自定义类型,该类型在值之上提供信息。例如,
通过使用包装类型来处理 Double 值可以很容易地完成
The only way to do this is to serialize
Double
values as a custom type which provide information on top of the value. For exampleThis can be done pretty easily by using a wrapper type to handle
Double
values