xml<-->保留类型的 json 转换器

发布于 2024-11-24 14:16:57 字数 523 浏览 2 评论 0 原文

我需要一个保留类型的 xml<-->json 转换器。 例如:

json:

"number": 1

to xml:

<number>1</number>

返回 json

"number": 1

到目前为止我找到的转换器将返回到 json,如下所示

"number": "1"

:(字符串语义而不是整数)

当然,我知道翻译中语义丢失了。我想知道是否有任何转换器尝试像这样保留 xml 上的类型:

<number xsi:type="s:int">1</number>

或使用 xml 模式等。

I need an xml<-->json converter which preserves types.
For example:

json:

"number": 1

to xml:

<number>1</number>

back to json:

"number": 1

the converters I've found so far will return back to json like this:

"number": "1"

(a string semantics and not int)

Of course I understand the semantics is lost in the translation. I wonder if any converter tried to preserve the type on the xml like this:

<number xsi:type="s:int">1</number>

or to use xml schema etc.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文