Taro.navigateToBookshelf(option)
跳转到宿主书架
支持情况:
百度小程序: (需宿主支持书架入口)
类型
(option: Option) => void
参数
参数 | 类型 |
---|---|
option | Option |
Option
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
category | string | 是 | 跳转到指定的内容分类 API 支持度: swan |
complete | (res: TaroGeneral.CallbackResult) => void | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
fail | (res: TaroGeneral.CallbackResult) => void | 否 | 接口调用失败的回调函数 |
success | (res: TaroGeneral.CallbackResult) => void | 否 | 接口调用成功的回调函数 |
Category
参数 | 说明 |
---|---|
article | 专栏模板 |
doc | 文档模板 |
cartoon | 动漫模板 |
av | 影音模板 |
示例代码
Taro.navigateToBookshelf({
category: 'article',
contentIds: 'test1',
success(res) {
Taro.showModal({
title: 'navigateToBookshelf',
content: 'success'
})
},
fail(err) {
Taro.showModal({
title: 'fail',
content: JSON.stringify(err)
})
}
})