jquery和angular都有defer服務(wù),我暫以angular為例談?wù)勎业睦斫?,最后并附上jquery的阮一峰總結(jié)的defer。

  以我目前項目的部分代碼為例說明為什么要用deferred。

電腦培訓(xùn),計算機(jī)培訓(xùn),平面設(shè)計培訓(xùn),網(wǎng)頁設(shè)計培訓(xùn),美工培訓(xùn),Web培訓(xùn),Web前端開發(fā)培訓(xùn)

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();