有时候我们需要在加载静态资源后完成一些操作。使用回调函数是一种常见的方法,但是这种方法可能会产生多个回调函数,使得代码结构更加复杂。所以我们可以使用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中文网其它相关文章!
版权声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系 yyfuon@163.com