MongoDB 怎么跳出forEach循环
天蓬老师
天蓬老师 2017-04-27 09:02:30
0
1
668
//  请问当查到的学生年龄大于18时,怎么跳出当前循环
db.student.find().forEach(function(x){
    if(x.age > 18){
        break; // 这里报语法错误
    }
})
天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

reply all(1)
曾经蜡笔没有小新

return;
Because the callback of forEach is a function;
break and continue can be used in the for() loop

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template