php中文网

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

php中文网

有时候我们需要在加载静态资源后完成一些操作。使用回调函数是一种常见的方法,但是这种方法可能会产生多个回调函数,使得代码结构更加复杂。所以我们可以使用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中文网其它相关文章!

上一篇:js如何防止别外来js

下一篇:返回列表