在我的 React 应用程序中,我想要一个按钮来导航到视频中出现的下一课,就在当前视频播放完毕之后。我react-player
用来显示视频。我想知道我怎样才能做到这一点react-player
。非常感谢任何有用的提示。
<ReactPlayer
url={videoPath}
width="100%"
height='100%'
controls={true}
className="player"
onEnded={markLessonAsCompleted}
config={{
file: {
attributes: {
controlsList: "nodownload"
}
}
}}
volume={1}
/>