为了更好地理解我的问题,请查看我的组件图:https://app.box.com/s/rkq9bhyzs00971x6xgpq8exmvu4zzjlt
通过查看图像,您可以看到我基本上具有
的组件结构Browse Widget
-Main Menu
-Display
-SubMenu
-SubCategory
-SearchBar
-Video Display
我的展示组件包含从API中提取的所有组件。但它们依赖于知道MainMenu组件具有的选项卡以进行正确的查询。每次单击一个选项卡时,我想更新显示的状态(使用来自API的新调用)。这可能吗?
我对如何更改某个组件的状态感到有点迷失,该组件不是直接处理事件本身的组件?
我是否需要更改我的组件结构,或者是否有更好的方法来执行此操作?您可以指向/制作的任何示例?
答案 0 :(得分:1)
我建议跟踪活动选项卡并管理DisplayController组件中的所有API调用。使用下面的结构应该足以让您入门。数据获取功能位于Display组件中,并通过props中的回调传递给其他组件。
var DisplayController = React.createClass({
getInitialState: function(){
return {
active_tab: 0, display_data: [],
tabs: [{name: 'Tab 0', tab_id: 0}, {name: 'Tab 1', tab_id: 1}, {name: 'Tab 2', tab_id: 2}]
};
}
changeTab: function(tab_id){
this.setState({active_tab: tab_id}, apiCall);
}
apiCall: function(){
//make api call based off of this.state.active_tab
//this.setState({display_data: whatever you get back from api})
}
render: function(){
dprops = {
tabs: this.state.tabs.
changeTab: this.changeTab,
active_tab: this.state.active_tab,
display_data: this.state.display_data
};
return (<MainMenu {...dprops}/>);
}
});
var MainMenu = React.createClass({
changeTab: function(tab_id){
this.props.changeTab(tab_id);
},
render: function(){
tabs = this.props.tabs.map(function(tab){
return <Tab onClick={this.changeTab.bind(tab.tab_id)} name={tab.name} key={tab.tab_id}/>
}.bind(this));
return(
<div>
{tabs}
<Display {...this.props} />
</div>
);
}
});
var Tab = React.createClass({
render: function(){
// make your tab component here from this.props.name
}
});
var Display = React.createClass({
render: function(){
// make your display component here using data from this.props
}
});