getSectionName () {
if (this.section) {
const sectionInfo = this.currentBook.section(this.section)
if (sectionInfo && sectionInfo.href) {
return this.currentBook.navigation.get(sectionInfo.href).label
}
}
// return ''
}
我的函数如上,但是终端提示错误,必须要return一个值,写入return ‘ ’报错消失,那么在没有写出else的情况下也需要return吗?我看老师的代码也没有加return’’,为啥我的会报错嘞?