我想通过变量提供密钥来调用JSON值。
鉴于
if (data[airplane].RunwayThreshold !== undefined){}
我可以将RunwayThreshold变为变量吗?
答案 0 :(得分:1)
您可以链接括号访问:
data[airplane][RunwayThreshold]
虽然您可能想要检查链中的未定义值。
由于访问权限为left-associative,因此成为:
(data[airplane])[RunwayThreshold]
并允许您深入查看对象。