查询书架内的相关书本,基础库从 1.18.0 版本开始支持
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
contentIds | array<string> | 是 | 要查询书本的 id,支持传多个 | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
参数
Object res
属性 | 类型 | 说明 |
---|---|---|
list | Array.<Object> | 查询的书本结果列表 |
res. list 的结构
属性 | 类型 | 说明 |
---|---|---|
contentId | string | 书本的唯一标识 |
status | number | 状态:值为 0 时是失败,为 1 时是成功 |
qq.queryBookshelf({
category: 'doc',
contentIds: ['test1', 'test2'],
success(res) {
console.log(res.list)
},
fail(err) {
}
})