gpt4 book ai didi

JavaScript 嵌套对象变量

转载 作者:行者123 更新时间:2023-11-30 16:27:03 25 4
gpt4 key购买 nike

<分区>

我需要使用传入函数的变量动态访问数据模型中的对象变量。

这是我的代码示例:

数据模型

var Sectors = {
Automotive: {
Question1: {
Strongly_Agree: 43,
Agree: 35,
Neither_Agree_Nor_Disagree: 10,
Disagree: 8,
Strongly_Disagree: 4,
Dont_Know: 10
},
Question2: {
Strongly_Agree: 54,
Agree: 33,
Neither_Agree_Nor_Disagree: 12,
Disagree: 5,
Strongly_Disagree: 4,
Dont_Know: 2
}
},
Technology: {
Question1: {
Strongly_Agree: 43,
Agree: 35,
Neither_Agree_Nor_Disagree: 10,
Disagree: 8,
Strongly_Disagree: 4,
Dont_Know: 10
},
Question2: {
Strongly_Agree: 54,
Agree: 33,
Neither_Agree_Nor_Disagree: 12,
Disagree: 5,
Strongly_Disagree: 4,
Dont_Know: 2
}
}
};

然后我有一个 html 选择供人们使用,这样他们就可以选择他们所在的部门。然后我需要根据他们选择比较的部门从我的数据模型中提取数据。

拉取数据的函数

function getData(sector){
return Sectors.Sectors[sector].Question1.Strongly_Agree;
}

如果我随后传递“汽车”部门,它就不起作用。

任何帮助都会很棒。

山姆

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