💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## decrby 将存储的数字key递减 * key 64位有符号整数 * val 减量 默认为1 ``` const Controller = require('think-js-lib').Controller class HelloController extends Controller { // 用于演示 restful api 接口功能 sayHello(ctx) { this.RDb().decrby('num') return this.showSuccess(true) } } module.exports = HelloController ``` > 无返回值,无需使用 ``async`` ``await``