在 Newtonsoft JSON 中,如何回退到默认转换行为/暂时禁用 JSON 转换器

发布于 2024-10-15 06:26:38 字数 271 浏览 1 评论 0原文

我正在尝试反序列化一些 JSON。

JSON 中的某些内容使用自定义 JSONConverter。此转换器查找对象的先前版本并合并来自 JSON 的更改。然而,当对象是新的时(因为没有以前的版本),这种行为没有任何意义,我通过检查 id 来检查。

有没有办法暂时禁用此转换器或从 ReadJson 方法内部回退到默认行为?

显而易见的方法是从 JsonSerializer 中删除转换器,然后再次调用 Deserialize,但这存在一个问题,即后续项目都不会使用自定义转换器。

I am attempting to deserialize some JSON.

Some of the things in the JSON use a custom JSONConverter. This converter looks up the previous version of the object and merges in changes from the JSON. However, this behaviour makes no sense when the object is new (because there is no previous version), which I check by inspecting the id.

Is there a way to temporarily disable this converter or fall back to the default behaviour from inside the ReadJson method?

The obvious way would be to remove the converter from the JsonSerializer and then call Deserialize again with that, but this has the problem that none of the subsequent items will then use the custom converter.

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

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

发布评论

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

评论(1

怀念你的温柔 2024-10-22 06:26:38

我的解决方法是向转换器添加一些排除类型的状态,然后在 CanConvert 方法中对其进行测试。

My work around for this was to add some state for excluded types to the converter, and to then test this in the CanConvert method.

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