json 字段名空格

发布于 2024-11-02 03:53:50 字数 192 浏览 1 评论 0原文

我有这样一个 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 技术交流群。

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

发布评论

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

评论(1

祁梦 2024-11-09 03:53:50

这不是有效的 JSON。 JSON 是一种数据传输格式,要求字段名称是用双引号分隔的字符串,例如

{
    "info" : {
        "First Name": "Robert",
        "Last Name": "Smith"
    }
}

解析后,可以使用 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.

{
    "info" : {
        "First Name": "Robert",
        "Last Name": "Smith"
    }
}

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.

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