💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## get 获取存储在给定键中的值,需要传入一个键名 ``` 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 ``` > 注意:需要配合 ``async`` ``await`` 变成同步的方式调用