美文网首页
路由中间件koa-router的使用

路由中间件koa-router的使用

作者: HuFan_JS | 来源:发表于2020-03-26 22:03 被阅读0次

    注册

    npm i koa-router
    

    实例化

    const usersRouter = new Router({ prefix: '/users' })
    

    添加路由

    // 获取全部用户
    usersRouter.get('/', find)
    // 增
    usersRouter.post('/', create)
    // 删
    

    加载路由中间件

    app.use(usersRouter.routes).use(route.allowedMethods())
    

    allowedMethods()的作用

    自动设置ctx.status,以及response header中加上Allow之外(Allow:服务器支持哪些请求方法(如GET、POST等))

    相关文章

      网友评论

          本文标题:路由中间件koa-router的使用

          本文链接:https://www.haomeiwen.com/subject/ihcchhtx.html