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)
  // ...
}


0
0

Vue 实战商业级读书Web APP完整项目

Vue全家桶+最新前端技术+前后端分离架构,完整项目流程

1610 学习 · 1951 问题

查看课程