nodejs unhandledPromiseRejectionWarning警告信息

版权声明:本文为博主汪子熙原创文章,未经博主允许不得转载。 https://blog.csdn.net/i042416/article/details/90054583

警告信息:unhandledPromiseRejectionWarning
clipboard

solution是加上这段catch处理:

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

2

猜你喜欢

转载自blog.csdn.net/i042416/article/details/90054583