Unable to access JSON property with quot;-quot; dash(无法使用“-访问 JSON 属性短跑)
问题描述
当字符串包含破折号时,我无法从 json 对象中检索值:
I am unable to retrieve a value from a json object when the string has a dash character:
{
"profile-id":1234, "user_id":6789
}
如果我尝试引用已解析的 jsonObj.profile-id
它会返回 ReferenceError: "id" is not defined
但 jsonObj.user_id 将返回 6789
If I try to reference the parsed jsonObj.profile-id
it returns ReferenceError: "id" is not defined
but jsonObj.user_id will return 6789
我没有办法修改外部 api 调用返回的值,并尝试解析返回的字符串以删除破折号会破坏 URL 等,这些也是传递的.帮忙?
I don't have a way to modify the values being returned by the external api call and trying to parse the returned string in order to remove dashes will ruin urls, etc., that are passed as well. Help?
推荐答案
jsonObj.profile-id
是减法表达式(即jsonObj.profile-id
).
要访问包含不能出现在标识符中的字符的键,请使用方括号:
To access a key that contains characters that cannot appear in an identifier, use brackets:
jsonObj["profile-id"]
这篇关于无法使用“-"访问 JSON 属性短跑的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法使用“-"访问 JSON 属性短跑
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01