錯誤處理
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
const process = require('node:process');
process.on('unhandledRejection', (reason, promise) => {
console.log('Unhandled Rejection at:', promise, 'reason:', reason);
// Application specific logging, throwing an error, or other logic here
});