0
我有一個單頁的angularjs應用程序,充當多個利益相關者的門戶。1個具有多個GTM帳戶的AngularJS Web應用程序
例如:
www.example.com/stakeholder/001/index
www.example.com/stakeholder/001/a/b
和
www.example.com/stakeholder/002/index.html
www.example.com/stakeholder/002/x/y
他們每個人都希望自己的谷歌代碼管理器(GTM)的帳戶,所以每一個不同的獨特GTM ID。這可能嗎?目前,我有個index.html,並在HEAD我已指定(其中獨特的是我的GTM ID):
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-UNIQUE" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(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-UNIQUE');</script>
<!-- End Google Tag Manager -->
是否有可能在GTM-ID動態交換到上面的代碼片段,裏面index.html,例如屬性文件?
感謝您的答案@J Brazier。不過,我不知道你的意思。 '將GTM作爲GTM內的自定義標籤'? ..'更像GGTMM'?我認爲我對這個東西的瞭解比你給我的信譽少。 – HellishHeat
@HellishHeat我的建議是將一個Google Tag Manager容器添加到該頁面,並在此容器中添加一個自定義標籤。該代碼是其他Google代碼管理器容器的代碼,其中代替GTM-UNIQUE使用自定義變量。以這種方式,您可以將您選擇的容器添加到每個站點。 這只是一個想法;在現實中,你可能會更好地使用更簡單的解決方案。 –