我正在使用望远镜for may blog应用程序,我可以通过望远镜管理设置配置谷歌分析。 现在我们想要配置Google跟踪代码管理器,但我们无法弄清楚如何使用望远镜配置GTM。我们找到了一个插件" https://github.com/GorillaStack/meteor-iron-router-gtm"它允许在流星中配置GTM,但它基于铁路由器,但使用流量路由器的望远镜..
有人可以帮助我们用望远镜配置GTM ..
答案 0 :(得分:4)
这对于我在项目
中向client.js添加代码是有用的if(Meteor.isClient){
FlowRouter.triggers.enter( [ enterFunction ] );
FlowRouter.triggers.exit( [ exitFunction ] );
function enterFunction() {
$('body').append("<noscript id='gtmnoscript'><iframe src=\"//www.googletagmanager.com/ns.html?id=GTM-XXXXXX\" height=\"0\" width=\"0\" style=\"display:none;visibility:hidden\"></iframe></noscript><script id='gtmscript'>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-XXXXXXX');</script>")
}
function exitFunction() {
$('#gtmnoscript').remove();
$('#gtmscript').remove();
}
}