我有一个保存我数据的对象。
DataSoccer: [{ 0: '0.00', 1: '10.4', 2:'100.5', 3:'15.3', 4:'11.2', 5:'15.9'}]
当键值为整数时,这很简单。
DataSoccer [0] [1] //返回10.4
问题是索引现在不是完整的
DataSoccer: [{ 0: '0.00', 1.30: '10.4', 2.40:'100.5', 3.40:'15.3', 4.5:'11.2', 5:'15.9'}]
所以我得到一个用户输入,比如2.30,那应该返回10.4(第二个索引)
目前我有if语句
if (value == 0 {
return 0.00
}
else if (value <= 1.30) {
return 10.4
}
else if (value > 1.30 value < 2.40) {
return 100.5
}
你可以想象这个使用if-else的查找功能会变得非常麻烦,并且想知道是否有更好的方法?
答案 0 :(得分:0)
通过一次迭代获取值的解决方案。
function getValue(p) {
return object[Object.keys(object).reduce(function (r, k) {
return k <= r || k > p ? r: k;
}, undefined)];
}
var object = { 0: '0.00', 1.30: '10.4', 2.40: '100.5', 3.40: '15.3', 4.5: '11.2', 5: '15.9' };
document.write('<pre>' + JSON.stringify(getValue(2.3), 0, 4) + '</pre>');
这是对象文字的注释,其中数字为键。
对象的属性是字符串,但在这种情况下,它们是数字,然后转换为字符串。
var DataSoccer = [{ 0: '0.00', 1.30: '10.4', 2.40:'100.5', 3.40:'15.3', 4.5:'11.2', 5:'15.9'}];
document.write('<pre>' + JSON.stringify(DataSoccer, 0, 4) + '</pre>');
document.write(DataSoccer[0]['2.4']);
答案 1 :(得分:-1)
试试这个
var DataSoccer = [{ 0: '0.00', 1.30: '10.4', 2.40:'100.5', 3.40:'15.3', 4.5:'11.2', 5:'15.9'}];
//sort all the keys in DataSoccer[0]
var sortedKeys = Object.keys(DataSoccer[0]).sort(function(a,b){ return parseFloat(a) - parseFloat(b) });
//get value lesser than 2.3 which is 1.3
var smallerKey = sortedKeys.filter(function(val){ return val < 2.3}).pop();
//get next value which is 2.4 after 1.3
var actualKey = sortedKeys[sortedKeys.indexOf(smallerKey) + 1];
//alerting the value at 2.4
alert("value is " + DataSoccer[0][actualKey] ); //access value ar 2.4
&#13;