将 JS 中不带引号的字典键转换为双引号键
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论