gpt4 book ai didi

javascript - 访问具有空格的 JSON 对象键

转载 作者:IT老高 更新时间:2023-10-28 12:43:20 30 4
gpt4 key购买 nike

我有以下 json 对象:

{ "id": "109",
"No. of interfaces": "4" }

以下几行工作正常:

alert(obj.id);
alert(obj["id"]);

但如果键有空格,那么我无法访问它们的值,例如

alert(obj."No. of interfaces"); //Syntax error

如何访问键名有空格的值?有没有可能?

最佳答案

这样做的方法是通过括号表示法。

var test = {
"id": "109",
"No. of interfaces": "4"
}
alert(test["No. of interfaces"]);

更多信息请阅读此处:

关于javascript - 访问具有空格的 JSON 对象键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10311361/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com