Taro.insertBookshelf(option)
添加内容到宿主书架
支持情况:
百度小程序: (需宿主支持书架入口)
类型
(option: Option) => void
参数
参数 | 类型 |
---|---|
option | Option |
Option
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
category | string | 是 | 添加的内容分类 |
contentIds | string[] | 是 | 要添加到书架内容的 id,支持传多个,最多 100 条;注释:contentId 为内容 id,内容的唯一标识,自定义,最长 22 字符(不能含有空格、中文字符) |
complete | (res: TaroGeneral.CallbackResult) => void | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
fail | (res: TaroGeneral.CallbackResult) => void | 否 | 接口调用失败的回调函数 |
success | (res: SuccessCallbackResult) => void | 否 | 接口调用成功的回调函数 |
Category
参数 | 说明 |
---|---|
article | 专栏模板 |
doc | 文档模板 |
cartoon | 动漫模板 |
av | 影音模板 |
SuccessCallbackResult
参数 | 类型 | 说明 |
---|---|---|
list | IListItem[] | 添加到书架的结果列表 |
IListItem
参数 | 类型 | 说明 |
---|---|---|
contentId | string | 内容的唯一标识 |
status | keyof Status | 添加状态:值为 0 时是失败,为 1 时是成功 |
msg | string | 添加信息 |
Status
参数 | 说明 |
---|---|
0 | 失败 |
1 | 成功 |
示例代码
Taro.insertBookshelf({
category: 'doc',
contentIds: ['test1', 'test2'],
success(res) {
Taro.showModal({
title: 'success',
content: JSON.stringify(res)
})
},
fail(err) {
Taro.showModal({
title: 'fail',
content: JSON.stringify(err)
})
}
})