例如(async()=>{letapiRes=null;try{apiRes=awaitaxios.get('https://silex.edgeprop.my/api/v1/a');}catch(err){console.error(err);}finally{console.log(apiRes);}})();在finally中,apiRes将返回null。即使api收到404响应,响应中仍然有我想使用的有用信息。当axios抛出错误时,如何在finally中使用错误响应。https://jsfiddle.net/jacobgoh101/fdvnsg6u/1/