在 JSON 中嵌入错误代码的映射是一个好习惯吗?
看一下 这段 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要将其视为地图,而应将其视为枚举器。
现在,将 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.