jquery和angular都有defer服務(wù),我暫以angular為例談?wù)勎业睦斫?,最后并附上jquery的阮一峰總結(jié)的defer。
以我目前項目的部分代碼為例說明為什么要用deferred。
function getBase64(img){//傳入圖片路徑,返回base64 function getBase64Image(img,width,height) { var canvas = document.createElement("canvas"); canvas.width = width ? width : img.width; canvas.height = height ? height : img.height; var ctx = canvas.getContext("2d"); ctx.drawImage(img, 0, 0, canvas.width, canvas.height); var dataURL = canvas.toDataURL();