更新已加入书架的书本的阅读时间,基础库从 1.18.0 版本开始支持
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
category | string | 是 | 添加的书本分类:article(阅读书籍模板) | |
contentId | string | 是 | 要更新的书本 id | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
参数
Object res
属性 | 类型 | 说明 |
---|---|---|
status | number | 更新状态:值为 0 时是失败,为 1 时是成功 |
msg | string | 更新的结果信息 |
qq.updateBookshelfReadTime({
category: 'doc',
contentId: 'test1',
success(res) {
console.log(res.list)
},
fail(err) {
}
})