Json.NET 是否有选项可以将不一致的 json 类型反序列化为对象?

发布于 2024-11-04 04:45:26 字数 291 浏览 0 评论 0原文

一个例子是我正在从 api 使用 json。 api返回json的方式不一致。假设您有一个 Author 并且它具有 Books[] 属性。不幸的是,当只有一本书时,API 选择返回 Author.Books(Book 类型)。首选方法是仅返回 Author.Books[] 中的一本书。

当我尝试让 Json.NET 反序列化一段 json 并发现 "Author":{"Book":{... 与 "Author":{"Book":[" 混合在一起时,Json.NET 会抛出序列化异常,这是可以理解的。 ..

有办法解决这个问题吗?

An example would be that I am consuming json from an api. The api is not consistent in how it returns the json. Say you have an Author and it has a property of Books[]. The api is unfortunately choosing to return Author.Books (of type Book) in cases when there is only one book. The prefered method would be to return just one Book inside Author.Books[].

Json.NET understandably throws a serialization exception when I try to have it deserialize a chunk of json and it finds "Author":{"Book":{... mixed in with "Author":{"Book":["...

Is there a way around this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏夜暖风 2024-11-11 04:45:26

我想最好的办法是在发送到反序列化器之前通​​过正则表达式替换来修复 json。如果您将 API 提供的 json 的完整示例放在这里,并且接受了 json,我可以为您制作正则表达式。

I guess the best would be fix the json through a regex replace before sending to the deserializer. If you put here a full sample of a json provided by the API, and a json accepted, i could make the regex for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文