我使用了Material UI版本3 scrollable-tab,在获取数据以加载选项卡和选项卡容器之后,但是第一个选项卡在页面加载时不会自动加载,需要单击以查看信息。
我到处都是Google,尝试设置此initialSelectedIndex
仍然不起作用,我从那里看到了a issue,但没有进一步的信息。
这是my reproduction code.
非常感谢!
答案 0 :(得分:0)
当componentDidMount中的请求得到解决时,您可以获取存储库:
componentDidMount() {
const results = fetch("https://api.github.com/users")
.then(res => {
return res.json();
})
.then(data => {
//fetch the repos
this.handleReferences(data[this.state.value].repos_url);
this.setState({ results: data });
});
}