UNPKG

ec-router

Version:

一个koa2自动路由中间件,直接根椐请求方法及路径路由到指定的controller。无需人工编写路由表或映射

9 lines 175 B
module.exports = { get : (ctx) => { ctx.myHeader += 'main' ctx.body = "get_users" }, _any:(ctx) => { ctx.body = "all_users" } }