Promise理解以及封裝ajax

Promise .then(函數1,函數2) 函數1:表示成功返回 函數2:代表失敗返回 .catch:失敗處理 ajax(url,‘GET’) //通常成功返回的處理 .then(res=>{ console.log(‘獲取數據::’,res) }) //失敗處理 .catch(error=>{ console.log(‘失敗的處理’,error) }) .all:主要用於同時處理多個接口的請求
相關文章
相關標籤/搜索