我仍然是初学者,当我想要做出反应时,我正在尝试创建一个隐藏的菜单,当您点击按钮时它会滑动,这是我的工作:
Application.Shutdown
非常感谢任何帮助
答案 0 :(得分:2)
您需要在构造函数中绑定toggleMenu
:
constructor(){
super();
this.state = {
shown: false
};
this.toggleMenu = this.toggleMenu.bind(this);
}
您可以将条件逻辑更改为单行:
{this.state.shown ? <BottomMenu /> : <p>Nothing to see</p>}
你的问题是什么?什么不起作用?你得到了什么错误?