Json.NET 是否有选项可以将不一致的 json 类型反序列化为对象?
一个例子是我正在从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这能回答你的问题吗?
有时是数组有时是对象时反序列化 JSON
Does this answer your question?
Deserializing JSON when sometimes array and sometimes object
我想最好的办法是在发送到反序列化器之前通过正则表达式替换来修复 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.