我正在做我的第一个reactjs项目。这是一个视频播放列表,所以这是我的项目的一部分
- Component Playlist Box (just a wrapper for the playlist
-- Component Playlist (the list of video)
--- Component Video (single video)
现在,每当我点击一个视频组件时,它必须将其“播放”状态更改为true,而在该时刻正在播放的组件(如果有)必须将其“播放”状态更改为false。
这是我的疑问:最好是更改单击的视频组件的状态,以便它再次呈现,并更改正在播放的视频状态,或者更好地更
你好,我正在尝试使用react视频js播放器,但是我得到了下面的错误:
The media could not be loaded, either because the server or network failed or because the format is not supported.
一开始,我想可能是视频类型,因为最初它是一个.mkvi视频,然后我更改为mp4,但我仍然没有得到相同的错误,我能得到帮助吗?
代码: VideoList.js
import React from 'react';
import VideoPlayer from 'react
我有视频标签
<div *ngFor="let video of videos">
<video width="320" height="240" controls>
<source [src]="video.url" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
可能有10或100个视频。它工作正常,但现在我有了这个限制:
用