我正在尝试在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.$);
答案 0 :(得分:0)
当您创建跟踪对象时,您将其命名为“mv”,因此当您发送事件时,您必须使用相同的名称
ga('mv.send', 'event', ...)