首页 > web前端 > js教程 > Javascript中使用Promise解决异步加载(图片、css、js等)

Javascript中使用Promise解决异步加载(图片、css、js等)

Barbara Streisand
发布: 2024-11-09 08:59:02
原创
929 人浏览过

Using Promise in Javascript to solve aynchronous loading(image, css, js, etc.)

有时候我们需要在加载静态资源后完成一些操作。使用回调函数是一种常见的方法,但是这种方法可能会产生多个回调函数,使得代码结构更加复杂。所以我们可以使用Promise来处理这个问题。

示例(加载图像)

function loadImg(imgSrc) {
  return new Promise(function(resolve, reject){
    img.load = () => {
      // asynchronous code here
      resolve()
    }

    img.onError = () => {
      reject()
    }
  })
}


loadImg('src.jpg').then(()=>{
  // operations after loading image here
}).catch(()=>{
 // error handling
})
登录后复制

加载多张图像的示例

function loadImg(imgSrc) {
  return new Promise(function(resolve, reject){
    img.load = () => {
      // asynchronous code here
      resolve()
    }

    img.onError = () => {
      reject()
    }
  })
}

const imgList = ['1.jpg', '2.jpg', '3.jpg', '4.jpg']
let imgLoadingPromise = []
for(let img of imgList) imgLoadingPromise.push(loadImg(img))

Promise.all(imgLoadingPromise).then(()=>{
  // operations after loading image here
}).catch(()=>{
 // error handling
})
登录后复制

Promise.all() 接收一组 Promise,只有当所有 Promise 都变为 fullfilled 状态时,这些 Promise 才会变为 fullfilled 状态

以上是Javascript中使用Promise解决异步加载(图片、css、js等)的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:dev.to
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板