在 JSON 中嵌入错误代码的映射是一个好习惯吗?

发布于 2024-07-24 04:01:06 字数 305 浏览 7 评论 0原文

看一下 这段 JSON 片段

动机:JSON 由 REST 服务生成并生成。 稍后将是 转换为 XML。

简单问题:我目前正在将错误代码的映射嵌入到 JSON 片段中,目的是帮助转换为 XML。 XML 格式不使用数字代码。 我应该将映射放置在 JSON 中还是执行转换的代码中?

Have a glance at this snippet of JSON.

Motivation: The JSON is generated by a REST service & later on will be
converted to XML.

Simple Question: I am currently embedding the map for the error codes inside the JSON snippet, with the intention of helping the transformation to XML. The XML format does not use numeric codes. Should I place the mapping inside the JSON or inside the code that will do the transformation?

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

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

发布评论

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

评论(1

暮光沉寂 2024-07-31 04:01:06

不要将其视为地图,而应将其视为枚举器。
现在,将 value 及其数值放入 json 中更有意义。

Instead of thinking of it as a map think of it as an enumerator.
Now it make more sense to put both value and its numeric value in the json.

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