有人使用了这个库,你能告诉我怎么做吗 获得活动部分,我已经在它的文档中进行了搜索,但是它很少,并且没有提及该方法
我已经创建了问题,但是我想知道这里是否有人可以帮助我
谢谢:D
更新:我可以解决它 在onScroll方法中的p事件中,可以使用p.activeSection
获得activeSectionclass Two extends React {
constructor() {
super();
this.state = {
initialActiveSection: null
};
}
onScroll(p) {
if (this.state.initialActiveSection === null)
this.setState(() => ({ initialActiveSection: p.activeSection
}));
}
render() {
const { initialActiveSection } = this.state;
return (
<SectionsContainer
{...options}
activeSection={initialActiveSection}
scrollCallback={this.onScroll}
/>
);
}
}