Kaltura error: kWidget is not defined at eval
Kaltura error: kWidget is not defined at eval
我正在尝试在我用 angular 编写的 Web 应用程序中使用 Kaltura API,meteor。但是,当我尝试使用它时出现 "kWidget is not defined at eval" 错误。过去的一个项目(不是我写的)使用 Kaltura API,所以我从那个网站复制了一小段嵌入代码到我的网络应用程序中。
Kaltura API 目前正在此网站上工作(link 到工作站点:here),但不在我的网站上。我已经尝试通过检查器查看网站的源代码,但我无法弄清楚为什么会出现此错误,而网站却没有。
有没有使用过 Kaltura API 的人有任何解决方案?我在 SO 上看到了几个答案,但在我的情况下我无法理解它们。
我在 html 视图中包含的代码:
<div id="kaltura_player_1476756849" style="width: 480px; height: 360px; margin:0 auto;"></div>
<p><script>
kWidget.embed({
"targetId": "kaltura_player_1476756849",
"wid": "_1971441",
"uiconf_id": 35431201,
"flashvars": {
"streamerType": "auto"
},
"cache_st": 1476756849,
"entry_id": "1_q52zk7l2"
});
</script></p>
我已经弄清楚了,所以我会保留它,以防万一其他人遇到这个问题并且它可以提供帮助。
如果您像我一样使用 meteor,请确保将 cdn 脚本包含在 index.html 文件中,而不是 html 播放器将出现的文件中。
尝试以下方法解决了我的问题:
$( document).ready(function() {
window.setTimeout(function(){
// your embed code
}
}
我正在尝试在我用 angular 编写的 Web 应用程序中使用 Kaltura API,meteor。但是,当我尝试使用它时出现 "kWidget is not defined at eval" 错误。过去的一个项目(不是我写的)使用 Kaltura API,所以我从那个网站复制了一小段嵌入代码到我的网络应用程序中。
Kaltura API 目前正在此网站上工作(link 到工作站点:here),但不在我的网站上。我已经尝试通过检查器查看网站的源代码,但我无法弄清楚为什么会出现此错误,而网站却没有。
有没有使用过 Kaltura API 的人有任何解决方案?我在 SO 上看到了几个答案,但在我的情况下我无法理解它们。
我在 html 视图中包含的代码:
<div id="kaltura_player_1476756849" style="width: 480px; height: 360px; margin:0 auto;"></div>
<p><script>
kWidget.embed({
"targetId": "kaltura_player_1476756849",
"wid": "_1971441",
"uiconf_id": 35431201,
"flashvars": {
"streamerType": "auto"
},
"cache_st": 1476756849,
"entry_id": "1_q52zk7l2"
});
</script></p>
我已经弄清楚了,所以我会保留它,以防万一其他人遇到这个问题并且它可以提供帮助。
如果您像我一样使用 meteor,请确保将 cdn 脚本包含在 index.html 文件中,而不是 html 播放器将出现的文件中。
尝试以下方法解决了我的问题:
$( document).ready(function() {
window.setTimeout(function(){
// your embed code
}
}