currentBook为null的bug
来源:5-6 目录功能实现(目录浮出效果)
guowenwen0420
2020-03-22
const sectionInfo = this.currentBook.section(this.section)在vuex中的currentBook是null, 通过new Epub(url)给currentBook赋值,而解析电子书是异步的,,所以this.currentBook.section(this.section)这句代码报错,请问老师该怎么解决呢
写回答
1回答
-
Sam
2020-03-23
您好,同上一个问题,可以加一个非空判断试试:
if (this.currentBook) { const sectionInfo = this.currentBook.section(this.section) // ... }
00
相似问题