使用状态ReactJS动态更改视频源

时间:2019-05-16 10:43:14

标签: reactjs webpack requirejs

每次尝试滑动Stepper表单(下一页)时,我都试图更改视频源。我从API获取所有视频源,并在React State Class上获取All。 问题是我无法从state.stringURL中创建要求的文件视频:

 <Player
              playsInline
              src={require('C:/videos/cat/Colors/Video.mp4')} //CORRECT
              //src={require(this.state.signURL)}   //ERROR


              fluid={false}
              width={400}
              height={400}
              autoPlay
              loop={true}
              />

Webpack警告说:

  • 关键依赖项:依赖项的请求是一个表达式

浏览器错误提示:

  • 未捕获的错误:找不到模块''

console.log(this.state.signURL)说:

  • /videos/cat/Colors/Video.mp4

0 个答案:

没有答案