将 JS 中不带引号的字典键转换为双引号键

发布于 2025-01-16 07:21:13 字数 641 浏览 0 评论 0原文

我有 json 格式字符串,其中的键不带引号。所以我无法使用 var jsonV = JSON.parse(fileStr) 将此字符串解析为 json。如何将字典的键放入引号中,然后将字符串解析为json?下面是我想要解析为 json 的示例字符串。

{
  title: 'Service Requests',
  navTitle: 'Service Requests',
  headers: {
    id: 'ID',
    priority: 'Priority',
    status: 'Status',
  },
}

我只将其作为字符串获取。我想将其解析为 JSON。

编辑: 我尝试了这个链接。但这些都没有回答我的问题。这些不满足以下条件:如果我们只有包含 json 元素且没有引号的字符串,如下例所示。 (我什至无法迭代这个字符串对象)

I have json format string that has keys without inverted commas. So I am not able to parse this string to json using var jsonV = JSON.parse(fileStr). How can I put the keys of dictionary into inverted commas and then parse the string to json? Below is the example string I want to parse into json.

{
  title: 'Service Requests',
  navTitle: 'Service Requests',
  headers: {
    id: 'ID',
    priority: 'Priority',
    status: 'Status',
  },
}

I am getting this as string only. I want to parse this into JSON.

Edit:
I tried this and this links. But none of these answered my question. These doesn't take the condition that if we have only string having json elements without inverted commas like in below example. (I cant even iterated through this string object as)

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

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

发布评论

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