作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试访问存储在 json 对象中的 id/keys 下的整数。为什么这段代码不能独立运行?
var rooms = {
'kitchen': [7, 40, 36, 16],
'livingroom': 31,
'livingroom2': 15,
'livingroom3': 38,
'gallery': 35,
'gallery2': 29,
'gallery3': 12,
'office': [22, 32],
'neekonsbedroom': 18,
'homeworkroom': 33,
'diningroom': 13,
'atrium': 11
}
function switchOne(id) {
console.log(rooms.id)
}
switchOne('office')
console.log()
返回 undefined
,但只是 console.log(rooms.office)
返回 [ 22, 32 ]
非常感谢任何帮助!编码愉快!
最佳答案
您正在对象中查找文字键 "id"
,而不是 id
值处的键(即 "office"
)。要让 Javascript 将 id
视为变量,您需要使用 rooms[id]
。
此处的信息解释了(向底部)访问对象的属性:https://www.w3schools.com/js/js_object_definition.asp .
关于javascript - 通过变量 .-string 插值访问 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47301321/
我是一名优秀的程序员,十分优秀!