Im新手到React js,我不知道下面的代碼有什麼問題,但我得到setState不是函數錯誤。請幫我解決這個問題。Reactjs this.setState不是函數錯誤
class AppBarLayout extends React.Component {
constructor(props) {
super(props);
this.state = {
visibleSideBar:true,
slide:""
}
}
showProfile(){
this.setState({
slide:'slide'
});
console.log(this.state.slide);
}
render(){
return(
<div>
<header>
<NavBar show={this.showProfile}/>
<Profile slide={this.state.slide} />
</header>
</div>
);
}
}
export default AppBarLayout;
的可能的複製[無法訪問陣營實例(本)事件處理程序內(http://stackoverflow.com/questions/29577977/unable-to-access-react- instance-this-inside-event-handler) –