nodejs unhandledPromiseRejectionWarning警告信息

148 阅读1分钟

警告信息:unhandledPromiseRejectionWarning
clipboard

solution是加上这段catch处理:

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

2