zoukankan      html  css  js  c++  java
  • js中Promise简单使用

    <script >
            //定义一个返回Promise对象方法
         const getlist=((type)=>{
            
            //resolve表示完成操作
            //reject异常操作
            return  new Promise((resolve,reject)=>{
                // throw{
                //             name:'typeErr',
                //             message:'you should enter a number'
                //         }
              if(type==1){
              resolve('错误啦。。。')}
              else{
              reject('对啦。。。')
            }
    })
         })
            window.onload=( ()=>{
                
                //noawait();
                 yawait();
            })
            
            //不用await
            const noawait=(()=>{
               getlist(2).then((result)=>{
                console.log('result');
                console.log(result);
               }).catch((err)=>{
                console.log('err me');
                 console.log(err);
               })
            })
          //使用await方式接收
            const yawait=(async ()=>{
              try {
              await只接受resolve返回的内容
                let data =await getlist(1);
               console.log(data);
              } catch (error) {
               reject返回的需要在catch里进行捕捉
                  console.log(error);
              }
               
            })
        </script>
  • 相关阅读:
    反转链表 16
    CodeForces 701A Cards
    hdu 1087 Super Jumping! Jumping! Jumping!(动态规划)
    hdu 1241 Oil Deposits(水一发,自我的DFS)
    CodeForces 703B(容斥定理)
    poj 1067 取石子游戏(威佐夫博奕(Wythoff Game))
    ACM 马拦过河卒(动态规划)
    hdu 1005 Number Sequence
    51nod 1170 1770 数数字(数学技巧)
    hdu 2160 母猪的故事(睡前随机水一发)(斐波那契数列)
  • 原文地址:https://www.cnblogs.com/dongml/p/14933369.html
Copyright © 2011-2022 走看看