constructor() {
super();
this.showSideBar = this.showSideBar.bind(this);
}
showSideBar(e) {
e.preventDefault();
this.sideBar.classList.toggle("show");
}
这是错误消息: Header.js:58 Uncaught TypeError:无法读取未定义的属性'classList'
任何人都知道为什么会这样吗?