我想使用youtube API(https://developers.google.com/youtube/iframe_api_reference)从附加的视频中获取当前时间。而且我想在另一个组件中使用该信息,所以这就是为什么要为window对象赋予一个属性,以便可以在任何地方访问该信息。
代码:
import React from 'react';
class VideoSingle extends React.Component {
constructor(props){
super(props);
this.state = {}
}
componentDidMount() {
// 2. This code loads the IFrame Player API code asynchronously.
var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
// 3. This function creates an <iframe> (and YouTube player)
// after the API code downloads.
var YT;
window.onYouTubeIframeAPIReady = function() {
YT = window.YT;
window.player = new YT.Player('videoplayer', {
height: '390',
width: '640',
videoId: 'M7lc1UVf-VE',
origin:'http://localhost:3001',
events: {
}
});
}
}
componentDidUpdate() {
console.log(window.player,'logging window.player at componentDidUpdate')
}
render(){
console.log(window.player,'logging window.player at render')
return (
//1. The <iframe> (and video player) will replace this <div> tag.
<div id="videoplayer"></div>
);
}
};
export default VideoSingle;
我尝试使用console.log的所有地方都给出了'undefined'(在我用console.log登录到componentDidMount和render的例子中):
但是当我在浏览器控制台中输入window.player.getCurrentTime()时,我实际上得到了一个值
我想了解如何在应用程序中的任何地方访问window.player.getCurrentTime()。
答案 0 :(得分:1)
登录后,YouTube脚本很可能会创建播放器...尝试呈现整个视图,然后控制台日志。在您的代码中...以下几行没有意义。检查YT API参考
YT = window.YT;
这使YT不确定...可能是您要说window.YT = YT
吗?请仔细检查。祝你好运,并及时通知我们。