我需要拆分此字符串并循环遍历结果数组。但是,即使我的结果字符串数组只有3个项目,我的循环也会变为无穷大。
我可能遗漏了一些东西,但此时我看不到它。
以下是代码:
CustomizeDashboardService.getCustomizedDashboard().then(function (res) {
console.log(res);
var sensors = res.sensor.split(',');
var devices = res.uuid.split(',');;
console.log("CS: S",sensors) // I Can see these 2 arrays have only 3 items each,
console.log("CS: D",devices) // but when it goes into my for loop, it iterates to indefinite
for(i=0;i<devices.length-1;i++){
console.log("girdi") // I see this is logging more than 1000 times
var index = findIndex(devices[i]);
var obj = {
device:self.deviceList[index],
sensor: sensors[i]
}
self.customizedSensors.push(obj);
}
console.log("customized sensors",self.customizedSensors);
})
答案 0 :(得分:2)
你的循环有for(i=0;i<devices.length-1;i++)
,这意味着迭代变量不是本地范围的。如果其他地方i
值已更改,则可能会导致问题。作为一个习惯问题,总是var
你的迭代器变量,除非你有一个非常具体的理由不(这种情况确实存在但很少见)。为了避免其他问题,我建议您查看所有代码并确保其中包含var
。