Skip to main content
Version: 3.x

Taro.navigateToBookshelf(option)

跳转到宿主书架

支持情况:

百度小程序: (需宿主支持书架入口)

参考文档

类型

(option: Option) => void

参数

参数类型
optionOption

Option

参数类型必填说明
categorystring跳转到指定的内容分类
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)
})
}
})