export default class TrailResult extends Component {
constructor() {
super()
this.video = React.createRef()
}
}
showVideo = () => {
const video = this.video.current
console.log(this.video)
}
render() {
return(
<video ref={this.video} style={{ width: '600px' }}>
视频测试
</video>)
}
抱歉,第一次提问,代码格式好像不知道怎么调...先试一下