uniappuni.createVideoContext('myVideo', this)报Can not find `myVideo`
时间: 2023-06-27 11:07:44 浏览: 171
wheresmyvideo:我的视频在哪里?
这个报错可能是因为你在调用 `uni.createVideoContext()` 方法时传递的参数不正确。请确保你传递了正确的视频 ID 值,并且你的页面中存在一个 ID 为 `myVideo` 的 `<video>` 标签。
另外,还需要注意的是,`uni.createVideoContext()` 方法需要在 `onReady()` 生命周期中调用,以确保视频已经加载完成并准备好播放。你可以在 `onReady()` 方法中调用 `uni.createVideoContext()` 方法,例如:
```
onReady() {
this.videoContext = uni.createVideoContext('myVideo', this)
}
```
然后,你就可以通过 `this.videoContext` 对象来控制视频的播放、暂停、跳转等操作了。
阅读全文