AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
## 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``