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
})();
但这两个然后给我错误在编译程序.有谁知道解决我的问题?
(async () =>{
console.log(e);
})().catch(err=>{
console.log("error: " + err);
});