我正在构建一个使用两个滑块的计算器,如下所示:
我有一系列存储在这样的对象中的 CPU 和 RAM 数据:
var CloudPlans = {
small: {
id: 'small',
from: {
cpu: 1,
ram: 1
},
to: {
cpu: 2,
ram: 2
},
price: {
linux: 3490,
windows: 4190
}
},
medium: {
id: 'medium',
from: {
cpu: 2,
ram: 2
},
to: {
cpu: 4,
ram: 4
},
price: {
linux: 5600,
windows: 6300
}
},
large: {
id: 'large',
from: {
cpu: 4,
ram: 4
},
to: {
cpu: 6,
ram: 8
},
price: {
linux: 9500,
windows: 10200
}
},
[...more configs here]
}
现在根据滑块的位置和值,我必须检查用户选择了哪个计划,然后计算组件的价格。这是检查价格范围的函数:
checkPlaninRange: function(cpuVal, ramVal) {
if(cpuVal >= CloudPlan.small.from.cpu && cpuVal <= CloudPlan.small.to.cpu ) {
return "small";
} else if (ramVal >= CloudPlan.small.from.cpu && ramVal <= CloudPlan.small.to.cpu) {
return "small";
}
}
如您所见,我将处理几乎无穷无尽的条件列表以返回所选计划。除了条件或案例语句之外,有什么方法可以简化基于代码的这些计划配置的存储或选择?