gpt4 book ai didi

reactjs - TypeScript React - 通过 ref 访问视频元素并调用 .play()

转载 作者:行者123 更新时间:2023-12-04 12:25:39 24 4
gpt4 key购买 nike

我有一个我想在点击时播放的 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 很陌生,但不确定我哪里出错了?

最佳答案

this.fullBleedVideo.current.play();将工作。您可以通过 current 访问 DOM属性(property)。

https://reactjs.org/docs/refs-and-the-dom.html

关于reactjs - TypeScript React - 通过 ref 访问视频元素并调用 .play(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53162192/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com