如果播放由 postMessage 触发,则不会触发 Youtube 的 onStateChange

Posted

技术标签:

【中文标题】如果播放由 postMessage 触发,则不会触发 Youtube 的 onStateChange【英文标题】:Youtube's onStateChange is not fired if play is triggered by postMessage 【发布时间】:2016-11-18 06:59:58 【问题描述】:

如果 youtube playVideo 由 postMessage 触发,则不会触发 onStateChange。 (http://jsfiddle.net/nedvedyy/smx92nq0/)。以前有人遇到过吗?

<script src="jquery-1.10.2.min.js"></script>
<!-- 1. The <iframe> (and video player) will replace this <div> tag. -->
<div id="player"></div>
<button class="button">BUTTON</button>
<script>
    // 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 player;

    function onYouTubeIframeAPIReady() 
        player = new YT.Player('player', 
            height: '390',
            width: '640',
            videoId: '0Bmhjf0rKe8',
            playerVars: 
                'controls': 1
            ,
            events: 
                'onReady': onPlayerReady,
                    'onStateChange': onPlayerStateChange
            
        );

    

    var playerReady = false;
    // 4. The API will call this function when the video player is ready.
    function onPlayerReady(event) 
        playerReady = true;

    


    // 5. The API calls this function when the player's state changes.
    //    The function indicates that when playing a video (state=1),
    //    the player should play for six seconds and then stop.
    function onPlayerStateChange(event) 
            alert(event);
    

    $(".button").on("click", function() 
               document.getElementById('player').contentWindow.postMessage(JSON.stringify(
            'event': 'command',
            'func': 'playVideo',
            'args': []
        ), "*");
    );
</script>

奇怪的是,如果像下面这样调用playVideo,就可以捕捉到onStageChange。

onPlayerReady=function(event) 
    console.log("hey Im ready");
    event.target.playVideo();

【问题讨论】:

如果你指的是onPlayerStateChange,它对我来说毫无问题 【参考方案1】:

你在这里完成作业了吗?阅读完整的手册,您的解决方案就在您粘贴的地方。

https://developers.google.com/youtube/iframe_api_reference

【讨论】:

嗨,请在发布任何答案之前通读问题,或者至少看看小提琴。我知道解决方案,但我要问的是为什么 postMessage 触发的 playVideo 不会将状态更改传递给侦听器 @Asharam Seervi 投了反对票,因为你甚至没有读过 Hammer 写的内容

以上是关于如果播放由 postMessage 触发,则不会触发 Youtube 的 onStateChange的主要内容,如果未能解决你的问题,请参考以下文章

postMessage 未推入 dataLayer

如果在单独的活动中发生更改,则不会触发 onSharedPreferenceChanged?

Youtube API - 无法在“DOMWindow”上执行“postMessage”

如果提交以编程方式启动,则提交事件不会触发

如果按下键,则不会触发鼠标交互的 JavaFX 事件

如果数据开始加载但不是 webViewDidFinishLoad,则不会触发 NSMutableURLRequest 超时