码迷,mamicode.com
首页 > 其他好文 > 详细

Promise

时间:2019-03-27 22:50:06      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:ons   OLE   rom   onload   异步   body   src   fun   read   

  1. Promise常用方法
    • Promise.prototype.then()

      接受两个参数resolved 回调 rejected 回调(可选)
    • Promise.prototype.catch()

      是.then(null, rejection)或.then(undefined, rejection)的> 别名,用于指定发生错误时的回调函数。

    • Promise.prototype.finally()

      方法用于指定不管 Promise 对象最后状态如何,都会执行的操作
    • Promise.all()
    • Promise.race()
    • Promise.resolve()
    • Promise.reject()

  2. 基本用法

     // 传入 resolve reject 参数 返回一个promise对象
     const promise = new Promise((resolve,reject) => {
     // code
     if() {
       return  resolve(value);
     }
     resolve(value);
     });
     promise.then((value) => {
     // code
     }).catch((err) => {
       // code
     })
    
  3. promise异步加载图片

       function loadImage_Async(url) {
         return new Promise((resolve, reject) => {
           const img = new Image(100, 100); //相当于document.createElement('img')
    
           img.onload = function() {
             resolve(img);
           };
           img.onerror = function() {
             reject(new Error("File Not found!"));
           };
           img.src = url;
         });
       }
    
       window.onload = function() {
         loadImage_Async("/1.png")
           .then(img => {
             document.body.appendChild(img);
           })
           .catch(err => {
             console.log(err);
           });
       };
    
  4. promise 封装Ajax

     function ajax_promise(url) {
       return new Promise((resolve, reject) => {
         const handle = function() {
           if (this.status === 200) {
             resolve(this.response);
           }
         };
         const xhr = new XMLHttpRequest();
         xhr.open("GET", url);
         xhr.onreadystatechange = handle;
         xhr.responseType = 'json';
         xhr.setRequestHeader("Accept", "application/json");
         xhr.send();
       });
     }
     ajax_promise(url)
       .then(data => {
         console.log(data);
       })
       .catch(err => {
         console.log(err);
       });
    

    原文:
    ruanyifeng:Promise对象

Promise

标签:ons   OLE   rom   onload   异步   body   src   fun   read   

原文地址:https://www.cnblogs.com/rosendolu/p/10611544.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!