3

我正在将望远镜用于可能的博客应用程序,并且我能够通过望远镜管理设置配置谷歌分析。现在我们想配置谷歌标签管理器,但我们不知道如何用望远镜配置 GTM。我们发现了一个插件“ https://github.com/GorillaStack/meteor-iron-router-gtm ”它允许在meteor中配置GTM,但它基于铁路由器,但望远镜使用流量路由器..

有人可以帮我们用望远镜配置 GTM ..

4

1 回答 1

5

这对我来说是在项目中向 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();
  }
}
于 2016-03-13T06:51:33.583 回答