在Cheerio / Jquery documentation中指出,return false应该尽早中断每个循环。
我有以下代码:
"use strict";
let cheerio = require('cheerio');
let $ = cheerio.load('<a href="www.test.com"></a><a href="www.test.com"></a>');
$('a').each(function(index,value){
console.log(index);
return false;
});
在我的脑海中,它应该打印0到控制台,但是它打印0和1。我缺少什么?
最佳答案
代码很好。如果查看cheerio的源代码,可以看到如果返回false,则循环将无法继续。
https://github.com/cheeriojs/cheerio/blob/master/lib/api/traversing.js#L298
exports.each = function(fn) {
var i = 0, len = this.length;
while (i < len && fn.call(this[i], i, this[i]) !== false) ++i;
return this;
};
关于jquery - Cheerio每个循环不会尽早爆发,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42942727/