千锋教育-做有情怀、有良心、有品质的职业教育机构

400-811-9990
手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

上海
  • 北京
  • 郑州
  • 武汉
  • 成都
  • 西安
  • 沈阳
  • 广州
  • 南京
  • 深圳
  • 大连
  • 青岛
  • 杭州
  • 重庆
当前位置:成都千锋IT培训  >  技术干货  >  forEach中的await

forEach中的await

来源:千锋教育
发布人:gxy
时间: 2023-04-11 16:33:47

  forEach中的await

forEach中的await

  不知道你是否写过类似的代码:

  function test() {

  let arr = [3, 2, 1]

  arr.forEach(async item => {

  const res = await fetch(item)

  console.log(res)

  })

  console.log('end')

  }

  function fetch(x) {

  return new Promise((resolve, reject) => {

  setTimeout(() => {

  resolve(x)

  }, 500 * x)

  })

  }

  test()

  复制代码

  

  我当时期望的打印顺序是

  3

  2

  1

  end

  结果现实与我开了个玩笑,打印顺序居然是

  end

  1

  2

  3

  为什么?

  复制代码

  其实原因很简单,那就是 forEach 只支持同步代码。

  我们可以参考下 Polyfill 版本的 forEach,简化以后类似就是这样的伪代码

  while (index < arr.length) {

  callback(item, index) //也就是我们传入的回调函数

  }

  复制代码

  从上述代码中我们可以发现,forEach 只是简单的执行了下回调函数而已,并不会去处理异步的情况。并且你在 callback 中即使使用 break 也并不能结束遍历。

  怎么解决?

  一般来说解决的办法有2种,for...of和for循环。

  使用 Promise.all 的方式行不行,答案是: 不行

  async function test() {

  let arr = [3, 2, 1]

  await Promise.all(

  arr.map(async item => {

  const res = await fetch(item)

  console.log(res)

  })

  )

  console.log('end')

  }

  复制代码

  可以看到并没有按照我们期望的输出。

  这样可以生效的原因是 async 函数肯定会返回一个 Promise 对象,调用 map 以后返回值就是一个存放了 Promise 的数组了,这样我们把数组传入 Promise.all 中就可以解决问题了。但是这种方式其实并不能达成我们要的效果,如果你希望内部的 fetch 是顺序完成的,可以选择第二种方式。

  第1种方法是使用 for...of

  async function test() {

  let arr = [3, 2, 1]

  for (const item of arr) {

  const res = await fetch(item)

  console.log(res)

  }

  console.log('end')

  }

  复制代码

  这种方式相比 Promise.all 要简洁的多,并且也可以实现开头我想要的输出顺序。

  但是这时候你是否又多了一个疑问?为啥 for...of 内部就能让 await 生效呢。

  因为 for...of 内部处理的机制和 forEach 不同,forEach 是直接调用回调函数,for...of 是通过迭代器的方式去遍历。

  async function test() {

  let arr = [3, 2, 1]

  const iterator = arr[Symbol.iterator]()

  let res = iterator.next()

  while (!res.done) {

  const value = res.value

  const res1 = await fetch(value)

  console.log(res1)

  res = iterator.next()

  }

  console.log('end')

  }

  复制代码

  第2种方法是使用 for循环

  async function test() {

  let arr = [3, 2, 1]

  for (var i=0;i

  const res = await fetch(arr[i])

  console.log(res)

  }

  console.log('end')

  }

  function fetch(x) {

  return new Promise((resolve, reject) => {

  setTimeout(() => {

  resolve(x)

  }, 500 * x)

  })

  }

  test()

  复制代码

  第3种方法是使用 while循环

  async function test() {

  let arr = [3, 2, 1]

  var i=0;

  while(i!==arr.length){

  const res = await fetch(arr[i])

  console.log(res)

  i++;

  }

  console.log('end')

  }

  function fetch(x) {

  return new Promise((resolve, reject) => {

  setTimeout(() => {

  resolve(x)

  }, 500 * x)

  })

  }

  test()

  复制代码

  要想在循环中使用async await,请使用for...of 或者 for 循环, while循环

  forEach支持async await

  forEach 在正常情况像下面这么写肯定是做不到同步的,程序不会等一个循环中的异步完成再进行下一个循环。原因很明显,在上面的模拟中,while 循环只是简单执行了 callback,所以尽管 callback 内使用了 await ,也只是影响到 callback 内部。

  arr.myforeach(async v => {

  await fetch(v);

  });

  复制代码

  要支持上面这种写法,只要稍微改一下就好

  Array.prototype.myforeach = async function (fn, context = null) {

  let index = 0;

  let arr = this;

  if (typeof fn !== 'function') {

  throw new TypeError(fn + ' is not a function');

  }

  while (index < arr.length) {

  if (index in arr) {

  try {

  await fn.call(context, arr[index], index, arr);

  } catch (e) {

  console.log(e);

  }

  }

  index ++;

  }

  };

声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。

猜你喜欢LIKE

小程序路由跳转

2023-04-06

经典面试题:static加载机制你知道吗?

2023-03-23

如何做用户分层?

2022-12-12

最新文章NEW

说说React中onClick绑定后的工作原理

2023-04-07

说说gulp和webpack的区别

2023-04-06

跨域如何解决

2023-04-04

相关推荐HOT

更多>>

快速通道 更多>>

最新开班信息 更多>>

网友热搜 更多>>