翻頁(yè)是翻了,可是有個(gè)問(wèn)題,每次翻頁(yè)直接到下一章節(jié)了,很奇怪。
翻頁(yè)是翻了,可是有個(gè)問(wèn)題,每次翻頁(yè)直接到下一章節(jié)了,很奇怪。
import?Epub?from?'epubjs' const?DOWNLOAD_URL?=?'/static/kill-a-bird.epub' export?default?{ ??name:?'Ebook', ??methods:?{ ????prevPage?()?{ ??????if?(this.rendition)?{ ????????this.rendition.prev() ??????} ????}, ????nextPage?()?{ ??????if?(this.rendition)?{ ????????this.rendition.next() ??????} ????}, ????//?電子書(shū)的解析和渲染 ????showEpub?()?{ ??????//?生成Book ??????this.book?=?new?Epub(DOWNLOAD_URL) ??????console.log(this.book) ??????//?生成Rendition,通過(guò)Book.renderTo ??????this.rendition?=?this.book.renderTo('read',?{ ????????width:?window.innerWidth, ????????height:?window.innerHeight ??????}) ??????//?通過(guò)Rendition.display ??????this.rendition.display() ????} ??}, ??mounted?()?{ ????this.showEpub() ??} }
2018-10-23
你好,源碼中沒(méi)有看出問(wèn)題,可以提供完整源碼看下