webapi路由器 创建具有Asp.Net WebApi相同感觉的Restful API应用程序 特征 不需要写烦人的koa.use(...)。 相反,webapi-router将自动使用控制器文件路径作为路由器路径。 另外,使用装饰器@GET(path)可以直接指示路由器路径。 支持@GET , @POST , @DELETE , @PUT , @OPTIONS , @HEAD , @PATCH 。 用法 1.在index.ts / js中设置控制器文件夹和Restful api前缀。 import { WebApiRouter } from '../lib/index' ; app