/** * 参数验证插件 */ const config = require("./config") const Parameter = require('parameter'); const parameter = new Parameter(); module.exports = async (app) => { app.parameter = parameter app.alias["$parameter"] = app.parameter }