首页 > 数据库 > MongoDB

MongoDB数据库forEach循环遍历用法

admin MongoDB 2022-02-10 13:14:26 MongoDB   forEach   循环遍历"

MongoDB数据库forEach语句循环遍历功能是非常常用的一个功能。
采用foreach循环遍历,并每次循环允许执行一次回调函数。
此外,foreach循环遍历是for循环的一种扩展,对比同浏览器端的forEach用法是一致的。

示例如下:

>var arr = ["ab","cd","ef"]
>var show = function(value,index,ar){ print(value) }
>arr.forEach(show)
ab
cd
ef

附加--浏览器端的forEach例子:

//value为当前元素值,index为当前元素在数组中的索引,ar为数组本身
functionShowResults(value, index, ar) {
document.write("value:" + value);
document.write("index: " + index);
document.write("name: " + this.name);
document.write("
");
}
varletters = ['ab', 'cd', 'ef'];
varscope = { name: 'scope' };
// ShowResults为回调函数,scope为回调设置上下文环境,使回调函数的this指向scope变量,scope为可选参数
letters.forEach(ShowResults,scope);
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。
本文地址:/shujuku/MongoDB/105478.html

留言与评论(共有 0 条评论)
   
验证码:

潘少俊衡

| 桂ICP备2023010378号-4

Powered By EmpireCMS

爱享小站

中德益农

谷姐神农

环亚肥料

使用手机软件扫描微信二维码

关注我们可获取更多热点资讯

感谢潘少俊衡友情技术支持