码迷,mamicode.com
首页 > 其他好文 > 详细

koa路由接口

时间:2019-04-14 09:40:20      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:exp   路由   await   OLE   bsp   code   log   数据   render   

const router = require(‘koa-router‘)()
//返回一个页面
router.get(‘/‘, async (ctx, next) => {
  global.console.log(‘index11111‘);
  await ctx.render(‘index‘, {    //render返回一个页面
    title: ‘Hello Koa 2!‘
  })
})
//直接返回数据的用body,json数据
router.get(‘/json‘, async (ctx, next) => {
  ctx.body = {
    title: ‘koa2 json‘
  }
})
//在不同页面为了区分接口,我们可以在加个前缀/user
router.prefix(‘/users‘)
module.exports = router
app.js
app.use(index.routes(), index.allowedMethods())

 

koa路由接口

标签:exp   路由   await   OLE   bsp   code   log   数据   render   

原文地址:https://www.cnblogs.com/lanshu123/p/10703868.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!