添加书本到书架内,基础库从 1.18.0 版本开始支持
通过<button open-type="insertBookshelf">
调用
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
open-type | string | 是 | 值为 insertBookshelf | |
category | string | 是 | 添加的书本分类:article(阅读书籍模版) | |
contentIds | array<string> | 是 | 要添加到书架书本的 id,支持传多个 | |
bindinsertbookshelf | function | 否 | 接口调用的回调函数,结果在回调参数event.detail中返回 |
参数 event.detail
属性 | 类型 | 说明 |
---|---|---|
errMsg | String | 错误信息,成功为insertbookshelf:ok |
list | Array<Object> | 添加到书架的结果列表 |
参数 event.detail.list 的结构
属性 | 类型 | 说明 |
---|---|---|
contentId | string | 书本的唯一标识 |
status | number | 添加状态:值为 0 时是失败,为 1 时是成功 |
msg | string | 添加信息 |
<button
open-type="insertBookshelf"
bindinsertbookshelf="bindinsertbookshelf"
category="article"
contentIds="{{ ['111','222'] }}"
>insertBookshelf</button>