1. ホーム
  2. ジャバスクリプト

nodejs unhandledPromiseRejectionWarning メッセージ

2022-01-23 02:23:41
<パス

警告メッセージ: unhandledPromiseRejectionWarning

解決策は、このキャッチ処理を追加することです。

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


<イグ