Koa 應用中使用錯誤處理中介軟體

C羽言發表於2024-04-08

示例:如果訪問應用時 URL 中包含引數 error=true,則會丟擲一個錯誤。錯誤處理中介軟體會捕獲這個錯誤,並返回適當的錯誤響應。

const Koa = require('koa');
const app = new Koa();

// 錯誤處理中介軟體
app.use(async (ctx, next) => {
  try {
    // 執行下一個中介軟體
    await next();
  } catch (err) {
    // 在這裡處理錯誤
    console.error('Error:', err);
    ctx.status = err.status || 500;
    ctx.body = {
      error: {
        message: err.message || 'Internal Server Error'
      }
    };
  }
});

// 示例路由處理
app.use(async (ctx) => {
  // 如果 URL 中包含了引數 "error=true",則丟擲一個錯誤
  if (ctx.query.error === 'true') {
    throw new Error('Oops! Something went wrong.');
  } else {
    ctx.body = 'Hello, world!';
  }
});

app.listen(3000, () => {
  console.log('Server is running on http://localhost:3000');
});

相關文章