koa路由接口

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())
相關文章
相關標籤/搜索