Koa 是一個基于 Node.js 的輕量級 Web 開發框架,它提供了一種更小、更健壯、更富有表現力的方法來處理 HTTP 請求。在 Koa 中,處理路由通常需要使用第三方中間件,例如 koa-router
。
以下是使用 Koa 和 koa-router 處理路由的基本步驟:
npm install koa koa-router
const Koa = require('koa');
const Router = require('koa-router');
const app = new Koa();
const router = new Router();
router.get('/', async (ctx, next) => {
ctx.body = 'Hello World!';
});
router.get('/users/:id', async (ctx, next) => {
const userId = ctx.params.id;
ctx.body = `User ID: ${userId}`;
});
app.use(router.routes());
app.use(router.allowedMethods());
const port = 3000;
app.listen(port, () => {
console.log(`Server is running at http://localhost:${port}`);
});
現在,當你訪問 http://localhost:3000
時,將看到 “Hello World!” 頁面。訪問 http://localhost:3000/users/123
時,將看到 “User ID: 123” 頁面。這就是在 Koa 框架中處理路由的基本方法。