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