You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
paccommand/routes/index.js

19 lines
327 B

const router = require('koa-router')()
router.get('/', async (ctx, next) => {
await ctx.render('index', {
title: 'X71291'
})
})
router.get('/string', async (ctx, next) => {
ctx.body = 'koa2 string'
})
router.get('/json', async (ctx, next) => {
ctx.body = {
title: 'koa2 json'
}
})
module.exports = router