我有一个这样的数据模型。
data: object = {
date: '11/11/18',
data: [3, 4, 7, 2, 5, 6, 8, 8]
}
数据数组来自用户的某些输入。从索引0开始,我希望他们是职业,财务,个人成长,健康,家庭,人际关系,社交生活,态度。
我想做的就是获得最低的分数(这将是2'健康')并将其添加到这样的对象中。
data: object = {
lowestScore = 2,
lowerScoreName = 'Health'
}
我对javaScript还是很陌生,并且对如何解决这个问题感到困惑。 谢谢
答案 0 :(得分:0)
您可以制作两个看起来像这样的相关数组(关联数组):
data: object = {
dataTypes: ['Career', 'Finances', 'Personal Growth', 'Health', 'Family', 'Relationships', 'Social Life', 'Attitude'],
dataValues: [3, 4, 7, 2, 5, 6, 8, 8],
}
然后获得最低分数:
lowestScore: Math.min(this.dataValues),
lowestScoreIndex: this.dataValues.indexOf(this.lowestScore);
并设置得分最低的名称:
lowestScoreName: this.dataTypes[lowestScoreIndex]
然后您就去了!这是完整的对象:
data: object = {
dataTypes: ['Career', 'Finances', 'Personal Growth', 'Health', 'Family', 'Relationships', 'Social Life', 'Attitude'],
dataValues: [3, 4, 7, 2, 5, 6, 8, 8],
lowestScore: Math.min(this.dataValues),
lowestScoreIndex: this.dataValues.indexOf(this.lowestScore);
lowestScoreName: this.dataTypes[lowestScoreIndex]
}