Koa 是一個(gè)基于 Node.js 的輕量級(jí) Web 開(kāi)發(fā)框架,它提供了一種更小、更健壯、更富有表現(xiàn)力的方法來(lái)處理 HTTP 請(qǐng)求。在 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}`);
});
現(xiàn)在,當(dāng)你訪問(wèn) http://localhost:3000
時(shí),將看到 “Hello World!” 頁(yè)面。訪問(wèn) http://localhost:3000/users/123
時(shí),將看到 “User ID: 123” 頁(yè)面。這就是在 Koa 框架中處理路由的基本方法。