我有一个TypeScript React视频组件,我想在单击时播放它。我希望通过使用单击处理程序来做到这一点,该处理程序通过ref访问视频并调用.play(),但是我遇到了此错误:
TS2339: Property 'play' does not exist on type 'RefObject<HTMLVideoElement>'.
这是我的代码(省略了不相关的部分):
class FullBleedVideo extends React.Component<PropDef, StateDef> {
private fullBleedVideo: React.RefObject<HTMLVideoElement>;
constructor(props: PropDef) {
super(props);
this.fullBleedVideo = React.createRef();
this.state = {
isPlaying: false,
};
}
public handleVideoClick() {
this.setState({ isPlaying: true });
this.fullBleedVideo.play();
}
render() {
const { isPlaying } = this.state;
return (
<div className="video_container" onClick={this.handleVideoClick.bind(this)}>
<video
ref={this.fullBleedVideo}
>
<source src={src} type="video/mp4" />
</video>
</div>
);
}
}
我是TypeScript的新手,但是不确定我哪里出错了?
答案 0 :(得分:1)
this.fullBleedVideo.current.play();
将工作。您可以通过current
属性访问DOM。