我正在使用 Node.js 和 Mongoose - 试图在递归函数嵌套的深层注释中找到特定的注释forEach
。有没有办法阻止 Node.js forEach
?据我所知,每次forEach
迭代都是一个函数,我不能只做break
,return
但这不会停止forEach
。
function recurs(comment) {
comment.comments.forEach(function(elem) {
recurs(elem);
//if(...) break;
});
}