1
我在加載YouTube IFrame API時遇到問題。
我添加了標籤,YouTube加載了他們的腳本,但是當我調用構造函數時,出現錯誤。YouTube IFrame API錯誤
player = YT.Player('vidPlayer', {
height: '390',
width: '640',
videoId: id,
playerVars: {
'rel': 0
},
events: {
'onReady': playerReady,
'onStateChange': playerStateChange
}
});
請糾正我,如果我在那裏做任何錯誤。當我調用該構造函數時,會引發錯誤。這是控制檯說:
Uncaught TypeError: a.G is not a function
qb @ www-widgetapi.js:24
P @ www-widgetapi.js:20
X @ www-widgetapi.js:31
onYouTubeIframeAPIReady @ script.js:55
(anonymous function) @ www-widgetapi.js:39
(anonymous function) @ www-widgetapi.js:39
有沒有人知道一種方法來解決這個問題?
由於您尚未發佈整個代碼,請查看我的小型項目:https://github.com/alibozorgkhan/minidj/blob/master/static/js/minidj.js。也許它可以幫助你找出問題所在。 – AliBZ
@AliBZ onYouTubeIframeAPIReady函數和添加player_api的腳本是代碼中唯一的東西,所以你在這裏看到的幾乎是所有東西都減去標籤腳本。 –