传递变量以获取JSON数据

时间:2017-09-23 18:19:57

标签: javascript jquery json node.js

我将JSON数据作为查询的响应。然后,最终用户从UI中进行两项选择,程序从JSON中检索数据。用户的选择存储在cityNumberselectParam个变量中。我想将这两个变量作为键传递。我可以通过cityNumber中的[],但selectParam会出错,因为没有任何名为selectParam的密钥。如何通过动态传递selectParam来检索数据?

var results = locations[cityNumber].data.selectParam.timeValuePairs;

1 个答案:

答案 0 :(得分:1)

像这样使用

  

var results = locations [cityNumber] [" data"] [selectParam] [   " timeValuePairs"];