JSON 转字符串,无需在键中添加引号
我正在构建一个生成 JSON 配置文件的 Web 应用程序(使用 Javascript/jQuery)。
最后应用程序应该将生成的 JSON 转换为字符串以便用户可以复制?
目前我正在做一个简单的 JSON.stringify() ,但这会为键和值添加引号。为了使配置文件正常工作,导出密钥时必须不带引号(除非另有说明)。
例如,"id": "ezdzdz"
应打印为 id: "ezdzdz"
,除非它在 JSON 中实际写为“id”。
谢谢,非常感谢所有帮助!
I am building a web-application (using Javascript/jQuery) that generates JSON configuration files.
At the end the applications should convert the generated JSON to a string so that it can be copied by the user?
At the moment I am doing a simple JSON.stringify()
, but this adds quotation to both keys and values. In order to get the configuration files to work it is necessary that the keys are exported without quotes (unless stated).
For example, "id": "ezdzdz"
should be printed as id: "ezdzdz"
unless its actually written as "id" in the JSON.
Thanks, all help is much appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果它是 JSON 而不是本机 Javascript 对象,则必须引用键名称。
请参阅:JSON 规范 - 密钥是否必须被引号包围?
If it's JSON and not a native Javascript object, you have to quote the key names.
See: JSON Spec - does the key have to be surrounded with quotes?
在 Javascript 中嵌入 JSON 对象且键上不带引号是有效的。它不是有效的 JSON,但它是有效的 Javascript。例如,对于单元测试中的存根数据很有用。
我编写了一个名为 JSON Beautifier 的工具来执行此操作。这里是:
http://www.csvjson.com/json_beautifier
Embedding a JSON object in Javascript without quotes on keys is valid. It isn't valid JSON, but it is valid Javascript. Useful for stub data in unit tests for example.
I wrote a tool to do that called JSON Beautifier. Here it is:
http://www.csvjson.com/json_beautifier