plugins 配置项 exports.redis = { enable: true, package: '@eggjs/redis', }; config 配置项 config.redis = { client: { port: 6379, // Redis port host: '127.0.0.1', Redis host password: '', db: 0, }, }; 在 controller 中执行 console.log(this.app.redis),得到的结果是 undefined;何解呢