如何将 "Google Tag Manager" 与 telescope 流星 js 集成?
how Integrate "Google Tag Manager" with telescope meteor js?
我将 telescope 用于 5 月的博客应用程序,并且我能够通过 telescope 管理设置配置 google 分析。
现在我们想配置 Google 跟踪代码管理器,但我们无法弄清楚如何使用 telescope 配置 GTM。我们找到了一个插件“https://github.com/GorillaStack/meteor-iron-router-gtm”,它允许在 meteor 中配置 GTM 但它基于 iron router 但 telescope 使用 flow-router..
有人可以帮我们配置 GTM telescope ..
这对我在项目
中添加代码到 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();
}
}
我将 telescope 用于 5 月的博客应用程序,并且我能够通过 telescope 管理设置配置 google 分析。 现在我们想配置 Google 跟踪代码管理器,但我们无法弄清楚如何使用 telescope 配置 GTM。我们找到了一个插件“https://github.com/GorillaStack/meteor-iron-router-gtm”,它允许在 meteor 中配置 GTM 但它基于 iron router 但 telescope 使用 flow-router..
有人可以帮我们配置 GTM telescope ..
这对我在项目
中添加代码到 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();
}
}