在进行木偶人网页抓取项目时处理错误的问题

问题描述 投票:0回答:1

im目前正在使用nodejs和puppeteer进行webscraping,并需要克服错误处理lingi尝试过这样的东西。

(async () => {
   try{
         content 
   }catch(err){
   content
    }
   content
})();


但它没有工作,然后我试着使用匿名函数,但也没有给我任何结果。

(async() => {
   (() => {
      content 
   }()catch(err){
      content
   }
   content
})();

或者使用async关键字

(async() => {
   (async() => {
      content 
   }()catch(err){
      content
   }
   content
})();

但这两个然后给我错误在编译程序.有谁知道解决我的问题?

node.js try-catch puppeteer
1个回答
0
投票
(async () =>{
    console.log(e);
})().catch(err=>{
    console.log("error: " + err);
});
© www.soinside.com 2019 - 2024. All rights reserved.