JSON 转字符串,无需在键中添加引号

发布于 2024-12-09 02:33:31 字数 298 浏览 1 评论 0原文

我正在构建一个生成 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 技术交流群。

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

发布评论

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

评论(2

征﹌骨岁月お 2024-12-16 02:33:31

如果它是 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?

只是偏爱你 2024-12-16 02:33:31

在 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

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