zl程序教程

您现在的位置是:首页 >  后端

当前栏目

nodejs unhandledPromiseRejectionWarning警告信息

Nodejs 信息 警告
2023-09-14 09:03:57 时间

警告信息:unhandledPromiseRejectionWarning
clipboard

solution是加上这段catch处理:

getToken().then(createContact).catch((error) =>{
  console.log("error: " + error.message);
});

2