🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ### Koa2 验证器 * [ ] 文档:https://www.npmjs.com/package/koa-parameter * [ ] 安装:npm install koa-parameter --save * [ ] 使用: 1. 注册插件 ![](https://box.kancloud.cn/1f11331131f751c2a5e2306285db6641_477x348.png) 2. 验证Http请求参数 ``` ctx.verifyParams({ username: {type: 'string', required: true}, password: {type: 'string', required: true} }) ```