问答详情
源自:3-3 错误处理

Promise错误处理两种方法

Promise错误处理两种方法

提问者:Keyro 2018-05-09 23:16

个回答

  • 第二钢协
    2019-11-06 18:00:26

    第二种方法不行,老师讲的有错,你运行下我下面的代码,throw 出来的错误没有被catch捕获到:

    console.log('here we go');new Promise((resolve)=>{	setTimeout(()=>{		throw new Error('bye');	},2000);}).then((value)=>{	console.log(val + 'world');}).catch((error)=>{	console.log('Error---------------', error.message);});


  • qq_空白格_67
    2018-05-10 15:17:18

    throw new error('错误信息),

    .catch(function(error){

    console.log("Error:",error.message)

    })