# qq.updateBookshelfReadTime

更新已加入书架的书本的阅读时间,基础库从 1.18.0 版本开始支持

# 参数

# Object object
属性 类型 默认值 必填 说明
category string 添加的书本分类:article(阅读书籍模板)
contentId string 要更新的书本 id
success function 接口调用成功的回调函数
fail function 接口调用失败的回调函数
complete function 接口调用结束的回调函数(调用成功、失败都会执行)
# object.success 回调函数

参数

Object res

属性 类型 说明
status number 更新状态:值为 0 时是失败,为 1 时是成功
msg string 更新的结果信息

# 示例代码

qq.updateBookshelfReadTime({
    category: 'doc',
    contentId: 'test1',
    success(res) {
        console.log(res.list)
    },
    fail(err) {
    }
})
1
2
3
4
5
6
7
8
9