Koa 是一个基于 Node.js 的轻量级 Web 开发框架,它本身并不包含路由功能。要在 Koa 中设置路由,你需要使用一个单独的中间件,例如 koa-router
。以下是如何在 Koa 项目中设置和使用 koa-router
的简要说明:
npm install koa koa-router
app.js
,并引入 Koa 和 koa-router:const Koa = require('koa');
const Router = require('koa-router');
const app = new Koa();
const router = new Router();
router.get()
、router.post()
等方法定义路由处理程序。例如,为根路径(“/”)定义一个 GET 请求处理程序:router.get('/', async (ctx, next) => {
ctx.body = 'Hello World!';
});
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!” 消息。你可以根据需要添加更多路由和处理程序。更多关于 koa-router
的信息和示例,请参阅官方文档:https://github.com/ZijianHe/koa-router