json 字段名空格
我有这样一个 json 结构:
info:
{
First Name: "Robert",
Last Name: "Smith"
}
我尝试使用 javascript 来指向数据,例如:“info.First Name” 我知道这是不正确的。 我如何从我拥有的结构中检索这些信息?
感谢
I've such a json structure:
info:
{
First Name: "Robert",
Last Name: "Smith"
}
I'm tring to point to data with javascript using something like: "info.First Name"
I know it's incorrect.
How can I retrieve those information from the structure I have?
thank
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是有效的 JSON。 JSON 是一种数据传输格式,要求字段名称是用双引号分隔的字符串,例如
解析后,可以使用 obj.info["First Name"] 来访问名字字段。
您拥有的是 JS 对象文字(仍然无效),但您可以应用相同的技术(字符串化属性名称)来达到相同的最终目标。
That's not valid JSON. JSON is a data transport format that requires field names to be string delimited with double quotes, e.g.
After parsing, you can then use
obj.info["First Name"]
to access the First Name field.What you have is a JS object literal (that's still invalid), but you can apply the same technique (stringify the property names) to reach the same end goal.