我需要暂停一个for循环而不是继续,直到我指定。对于我正在循环的数组中的每个项目,我运行一些在单独的设备上运行操作的代码,我需要等到该操作完成后再循环到数组中的下一个项目。
幸运的是,该代码/操作是一个游标,并具有after:
部分。
然而,它一直在运行整个for循环,我需要阻止它。有没有办法阻止循环继续,直到指定?或者也许是我应该使用的不同类型的循环?
我的第一个(差)想法是在连续运行的for循环中创建一个while循环,直到光标的after:
部分将boolean
设置为true
。这只是锁定浏览器:(因为我担心它会。
我能做什么?我对javascript很新。我一直很喜欢我目前的项目。
这是while-loop
尝试。我知道它正在立即运行整个循环,因为dataCounter
立即从1
转到3
(当前数组中的两个项目):
if(years.length>0){
var dataCounter = 1;
var continueLoop;
for(var i=0;i<years.length;i++){
continueLoop = false;
baja.Ord.make(historyName+"?period=timeRange;start="+years[i][1].encodeToString()+";end="+years[i][2].encodeToString()+"|bql:select timestamp, sum|bql:historyFunc:HistoryRollup.rollup(history:RollupInterval 'hourly')").get(
{
ok: function (result) {
// Iterate through all of the Columns
baja.iterate(result.getColumns(), function (c) {
baja.outln("Column display name: " + c.getDisplayName());
});
},
cursor: {
before: function () {
baja.outln("Called just before iterating through the Cursor");
counter=0;
data[dataCounter] = [];
baja.outln("just made data["+dataCounter+"]");
},
after: function () {
baja.outln("Called just after iterating through the Cursor");
continueLoop = true;
},
each: function () {
if(counter>=data[0].length) {
var dateA = data[dataCounter][counter-1][0];
dateA += 3600000;
}
else {
var dateA = data[0][counter][0];
}
var value=this.get("sum").encodeToString();
var valueNumber=Number(value);
data[dataCounter][counter] = [dateA,valueNumber];
counter++;
},
limit: 744, // Specify optional limit on the number of records (defaults to 10)2147483647
offset: 0 // Specify optional record offset (defaults to 0)
}
})
while(continueLoop = false){
var test = 1;
baja.outln("halp");
}
dataCounter++;
}
}
答案 0 :(得分:5)
不要在每个元素上使用for循环。您需要在after:
中记住您刚刚完成的数组中的哪个元素,然后转到下一个元素。
这样的事情:
var myArray = [1, 2, 3, 4]
function handleElem(index) {
module.sendCommand({
..., // whatever the options are for your module
after: function() {
if(index+1 == myArray.length) {
return false; // no more elem in the array
} else {
handleElem(index+1)} // the after section
}
});
}
handleElem(0);
我假设您使用某些选项调用某个函数(就像您对$.ajax()
所说的那样)并且after()
部分是在您的流程结束时调用的函数(例如success()
对于$.ajax()
)
如果您调用的“模块”未在after()
回调中正确结束,则可以使用setTimeout()在延迟的下一个元素上启动该过程
编辑:使用您的真实代码,它将是这样的:
function handleElem(index) {
baja.Ord.make("...start="+years[index][1].encodeToString()+ "...").get(
{
ok: ...
after: function() {
if(index+1 == years.length) {
return false; // no more elem in the array
} else {
handleElem(index+1)} // the after section
}
}
});
}