💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
通过 ``config/redis.js`` 文件来配置连接Redis <br> ``` // redis配置 module.exports = { db: { host: '127.0.0.1', prot: 6379, db: 0 } // 多个db可以指定多数据源,如:db2: {...} } ``` 在控制器中可以通过 ``this.RDb()`` 来调用redis方法,可以通过传入数据源的名称来选用数据源,默认不传是db ``` const Controller = require('think-js-lib').Controller class HelloController extends Controller { // 用于演示 restful api 接口功能 async sayHello(ctx) { let result = await this.RDb().get('token') return this.showSuccess(result) } } module.exports = HelloController ```