我的页面上有4个标签。每个标签包含不同的数据。
我在第一个标签内有按钮,基本上想要激活下一个标签,以便在用户点击该按钮时显示内容。
render(){
return (
<MuiThemeProvider>
<div className="background">
<Header/>
<div>
<Card>
<Tabs>
<Tab label="General">
<div>
<button>Normal button</button>
// when user clicks on this button description tab should be active
</div>
</Tab>
<Tab label="Descriptions">
<Description />
</Tab>
<Tab label="Content">
<Content />
</Tab>
<Tab label="Sidebar">
<Sidebar/>
</Tab>
</Tabs>
</Card>
</div>
</div>
</MuiThemeProvider>
)
}
我该怎么做?
答案 0 :(得分:2)
以下是您需要做的事情 - 使用受控制的标签。分配一个状态值,该值确定当前时间打开的选项卡,并使用按钮上的单击激活下一个选项卡。
//The currentTab variable holds the currently active tab
constructor(props) {
super(props);
this.state = {
currentTab: 'a',
};
}
handleChange = (value) => {
this.setState({
currentTab: value,
});
};
render(){
return (
<MuiThemeProvider>
<div className="background">
<Header/>
<div>
<Card>
<Tabs
value={this.state.currentTab}
onChange={this.handleChange}
>
<Tab label="General" value="a">
<div>
//Sets the currentTab value to "b" which corresponds to the description tab
<button onClick={()=>this.handleChange("b")}>Normal button</button>
</div>
</Tab>
<Tab label="Descriptions" value="b">
<Description />
</Tab>
<Tab label="Content" value="c">
<Content />
</Tab>
<Tab label="Sidebar" value="d">
<Sidebar/>
</Tab>
</Tabs>
</Card>
</div>
</div>
</MuiThemeProvider>
)
}