使用Youtube API将视频添加到播放列表



我成功地将视频添加到播放列表中,但它被添加了多次(有时两次,有时更多)。有人能帮忙吗?

$resourceId = new Google_Service_YouTube_ResourceId();
$resourceId->setVideoId($videoID);
$resourceId->setKind('youtube#video');
$playlistItemSnippet = new Google_Service_YouTube_PlaylistItemSnippet();
$playlistItemSnippet->setPlaylistId($playlistId);
$playlistItemSnippet->setResourceId($resourceId);
$playlistItem = new Google_Service_YouTube_PlaylistItem();
$playlistItem->setSnippet($playlistItemSnippet);
$playlistItemResponse = $youtube->playlistItems->insert('snippet,contentDetails', $playlistItem, array());

我自己解决了它,我为此感到非常自豪:)

我意识到ajax在mouseover上触发了上面的php脚本。因此,每次我离开checkbox元素时,php脚本都会多次触发。

我用以下内容更改了鼠标悬停代码:

$(function() {
    $('input.Chilltrap').on('click', function(e) {
        var chilltrap = this.id;     
        if( $("input[name=" + chilltrap + "]").prop('checked') ) {
            checkboxstatusCt = "Yes";
        }
        else {
            checkboxstatusCt = "No";
        }
        var url = "url.php";
        var params = "c="+checkboxstatusCt+"&s="+chilltrap;
        if (window.XMLHttpRequest) {
            xmlhttp = new XMLHttpRequest();
        } else {
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        }
        xmlhttp.onreadystatechange = function() {
            if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {                         
                $("#error").html(xmlhttp.responseText);
                $("#error"). fadeIn('fast');
                setTimeout(function(){
                    $("#error"). fadeOut('slow');
                },2000);
            }
        };
        xmlhttp.open("GET", url+"?"+params,true);
        xmlhttp.send();
    });
});

相关内容

  • 没有找到相关文章

最新更新