如何在vuejs中绑定Wistia视频play/end事件
How to bind Wistia video play/end event in vuejs
我正在使用 Wistia 脚本将视频嵌入到我的 vuejs 页面中,使用他们的后备脚本成功嵌入了视频,如下所示:
<div class="wistia_responsive_padding" style="padding:55.94% 0 0 0;position:relative;">
<div class="wistia_responsive_wrapper" style="height:100%;left:0;position:absolute;top:0;width:100%;">
<iframe :src="defaultWistiaVideo" title="Welcome Video" allow="autoplay; fullscreen" allowtransparency="true" frameborder="0" scrolling="no" class="wistia_embed" name="wistia_embed" allowfullscreen msallowfullscreen width="100%" height="100%"></iframe>
</div>
</div>
现在我想监听 play
和 end
事件,将用户的观看状态更改为 watching/watched。
我正在添加以下两个脚本,就像他们的指南一样,但它不起作用。
请注意,如果我将它们放入单独的 html 文件而不是 vuejs 组件,这些脚本将起作用
我不确定如何使用 vuejs 正确设置这些事件。
<div id="wistia_abcde12345" class="wistia_embed" style="width:640px;height:360px;"> </div>
<script src="//fast.wistia.com/assets/external/E-v1.js"></script>
<script>
wistiaEmbed = Wistia.embed("abcde12345");
wistiaEmbed.hasData(function() {
wistiaEmbed.bind("play", function() {
console.log("video played", wistiaEmbed.name());
});
});
</script>
<script src="//fast.wistia.com/assets/external/E-v1.js" async></script>
<div class="wistia_embed wistia_async_abcde12345" style="width:640px;height:360px;"></div>
<script>
window._wq = window._wq || [];
_wq.push({ id: "abcde12345", onReady: function(video) {
video.bind("play", function() {
console.log("video played", video.name());
});
}});
</script>
您应该将 wistia 事件监听脚本放在 mounted
函数上,如下所示:
mounted() {
window._wq = window._wq || [];
let context = this;
_wq.push({ id: '_all', onReady: function(video) {
video.bind('play', function() {
// event handler
});
video.bind('end', function() {
// event handler
});
}});
}
我正在使用 Wistia 脚本将视频嵌入到我的 vuejs 页面中,使用他们的后备脚本成功嵌入了视频,如下所示:
<div class="wistia_responsive_padding" style="padding:55.94% 0 0 0;position:relative;">
<div class="wistia_responsive_wrapper" style="height:100%;left:0;position:absolute;top:0;width:100%;">
<iframe :src="defaultWistiaVideo" title="Welcome Video" allow="autoplay; fullscreen" allowtransparency="true" frameborder="0" scrolling="no" class="wistia_embed" name="wistia_embed" allowfullscreen msallowfullscreen width="100%" height="100%"></iframe>
</div>
</div>
现在我想监听 play
和 end
事件,将用户的观看状态更改为 watching/watched。
我正在添加以下两个脚本,就像他们的指南一样,但它不起作用。
请注意,如果我将它们放入单独的 html 文件而不是 vuejs 组件,这些脚本将起作用
我不确定如何使用 vuejs 正确设置这些事件。
<div id="wistia_abcde12345" class="wistia_embed" style="width:640px;height:360px;"> </div>
<script src="//fast.wistia.com/assets/external/E-v1.js"></script>
<script>
wistiaEmbed = Wistia.embed("abcde12345");
wistiaEmbed.hasData(function() {
wistiaEmbed.bind("play", function() {
console.log("video played", wistiaEmbed.name());
});
});
</script>
<script src="//fast.wistia.com/assets/external/E-v1.js" async></script>
<div class="wistia_embed wistia_async_abcde12345" style="width:640px;height:360px;"></div>
<script>
window._wq = window._wq || [];
_wq.push({ id: "abcde12345", onReady: function(video) {
video.bind("play", function() {
console.log("video played", video.name());
});
}});
</script>
您应该将 wistia 事件监听脚本放在 mounted
函数上,如下所示:
mounted() {
window._wq = window._wq || [];
let context = this;
_wq.push({ id: '_all', onReady: function(video) {
video.bind('play', function() {
// event handler
});
video.bind('end', function() {
// event handler
});
}});
}