gpt4 book ai didi

javascript - 如何使用其插件和通用 Google Analytics 跟踪 mediaelement.js 上的事件

转载 作者:行者123 更新时间:2023-11-28 06:19:40 25 4
gpt4 key购买 nike

我正在尝试在 mediaelement.js 音频播放器上实现 Google Analytics 事件跟踪。我已成功跟踪页面上链接的点击次数,但我很想跟踪有多少人实际收听音频(不提供仅下载链接且不提供音频播放器)。

我相信我所做的一切都是正确的,但显然我没有,因为它不起作用。 GA 报告中没有显示任何事件。我通过谷歌搜索找不到太多东西。我在这个网站上发现了类似的问题( How to track events on mediaelement.js with Google Analytics ),但它对我没有帮助。

谁能看出错误在哪里吗?也许我在这里做了一些根本性错误的事情。

这是相关的html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="XrefThemes/Theme1/src/jquery.js"></script>
<script type="text/javascript" src="XrefThemes/Theme1/src/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="XrefThemes/Theme1/src/mep-feature-googleanalytics.js"></script>
<link rel="stylesheet" href="XrefThemes/Theme1/src/mediaelementplayer.css" />
<title>
Doknr 1383519
</title>
</head>
<body>
<script>

(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-37025154-3', 'auto', {'name': 'mv', 'allowLinker': true});
ga('mv.require', 'linker');
ga('mv.linker:autoLink', ['musikverket.se', 'musikverk.se', 'statensmusikverk.se', 'visarkiv.se', 'muslib.se', 'elektronmusikstudion.se', 'smus.se', 'dramawebben.se'] );
ga('mv.require', 'displayfeatures');
ga('mv.send', 'pageview');

</script>

<table>
<tr>
<td>Anmärkningar</td>
<td>
<div><audio controls="controls" type="audio/mpeg" style="width: 500px" src="http://xref.musikverk.se/visarkivetserver/getfile.aspx?file=audio/SVABA0001-0002.mp3"></audio><br><audio controls="controls" type="audio/mpeg" style="width: 500px" src="http://xref.musikverk.se/visarkivetserver/getfile.aspx?file=audio/SVABA0003-0004.mp3"></audio></div>
</td>
</tr>
</table>
<script>$('video,audio').mediaelementplayer();</script>
</body>
</html>

这是 js 代码(我在这里找到的: https://github.com/johndyer/mediaelement/blob/9d4ceefc75b9936cd32a1c17be761809bbbc0c16/src/js/mep-feature-universalgoogleanalytics.js )(感谢nyuen指出我在发送之前错过了mv!现已更正。)

/*
* analytics.js Google Analytics Plugin
* Requires JQuery
*/

(function($) {

$.extend(mejs.MepDefaults, {
googleAnalyticsTitle: 'Test',
googleAnalyticsCategory: 'Mediafiles',
googleAnalyticsEventPlay: 'Play',
googleAnalyticsEventPause: 'Pause',
googleAnalyticsEventEnded: 'Ended',
googleAnalyticsEventTime: 'Time'
});


$.extend(MediaElementPlayer.prototype, {
builduniversalgoogleanalytics: function(player, controls, layers, media) {

media.addEventListener('play', function() {
if (typeof ga != 'undefined') {
ga('mv.send', 'event',
player.options.googleAnalyticsCategory,
player.options.googleAnalyticsEventPlay,
(player.options.googleAnalyticsTitle === '') ? player.media.currentSrc : player.options.googleAnalyticsTitle
);
}
}, false);

media.addEventListener('pause', function() {
if (typeof ga != 'undefined') {
ga('mv.send', 'event',
player.options.googleAnalyticsCategory,
player.options.googleAnalyticsEventPause,
(player.options.googleAnalyticsTitle === '') ? player.media.currentSrc : player.options.googleAnalyticsTitle
);
}
}, false);

media.addEventListener('ended', function() {
if (typeof ga != 'undefined') {
ga('mv.send', 'event',
player.options.googleAnalyticsCategory,
player.options.googleAnalyticsEventEnded,
(player.options.googleAnalyticsTitle === '') ? player.media.currentSrc : player.options.googleAnalyticsTitle
);
}
}, false);

/*
media.addEventListener('timeupdate', function() {
if (typeof ga != 'undefined') {
ga('mv.send', 'event',
player.options.googleAnalyticsCategory,
player.options.googleAnalyticsEventEnded,
player.options.googleAnalyticsTime,
(player.options.googleAnalyticsTitle === '') ? player.media.currentSrc : player.options.googleAnalyticsTitle,
player.currentTime
);
}
}, true);
*/
}
});

})(mejs.$);

最佳答案

当您创建跟踪对象时,您将其命名为“mv”,因此当您发送事件时,您必须使用相同的名称

ga('mv.send', 'event', ...)

关于javascript - 如何使用其插件和通用 Google Analytics 跟踪 mediaelement.js 上的事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35649955/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com