我很难弄清楚如何让这个(正常运行的)客户端 js 代码在流星中工作(在屏幕上输入元素的模板事件期间拉出 theVideo 变量。)
<script type="text/javascript" src="swfobject/swfobject.js"></script>
<div id="ytapiplayer">
You need Flash player 8+ and JavaScript enabled to view this video.
</div>
<script type="text/javascript">
theVideo = 'tAbCgr6jJ_0';
if(theVideo != 'null'){
var params = { allowScriptAccess: "always" };
var atts = { id: "myytplayer" };
swfobject.embedSWF("http://www.youtube.com/v/"+theVideo+"?enablejsapi=1&playerapiid=ytplayer&version=3",
"ytapiplayer", "325", "256", "8", null, null, params, atts);
}
function onYouTubePlayerReady(playerId) {
ytplayer = document.getElementById("myytplayer");
ytplayer.playVideo();
}
</script>
尝试通过 DOM 注入(此 html/javascript)加载脚本不起作用,swfobject 脚本似乎无法从本地和远程主机加载。
将脚本 (swfobject.js) 添加到我的项目根目录(排行榜示例)会在启动应用程序时(在终端输出内)导致“ReferenceError:未定义窗口”。
此代码在普通 HTML 页面内的客户端正常工作以加载脚本。
我在一个古老的(2009 年)repo 中找到了一个库,它在启动时没有崩溃,但随后弹出了“swfobject”未找到错误。
关于解决方法的任何想法?将此代码放入模板事件中也不起作用;加载 swfobject 似乎总是问题所在。