根据特定历史记录更改触发 GTM dataayer 变量
我正在使用 react-gtm-module 我项目的经理。截至目前,我在以下代码要求的情况下触发数据层变量
window.dataLayer = window.dataLayer || []
window.dataLayer.push({
Car_NewUser_Create: 'Yes'
})
,但是现在有一个特殊情况,当我们从“/simulcao”路由“/pactotes”路线时,我需要发射相同的可变“ car_newuser_create”。
GTM中有一种用于历史记录变化的配置,可以检测到历史路线的每一个变化,但是对于此特定的路线更改,我需要传递此变量,我找不到有关如何实现它的任何来源。
谢谢 !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用历史更改事件中填充的两个未记录的变量,即
gtm.oldUrl
和gtm.newUrl
。这是启用并触发历史更改事件时 GTM 将推送到数据层的示例:
由于某些原因,变量在 变量文档并且不可用作为要启用的内置变量。
只需配置两个新的 dataLayer 变量即可捕获它们。一旦解决了这个问题,您就可以在 GTM 中应用的任何逻辑中使用它们。
在您的情况下,为
dataLayer.push({ Car_NewUser_Create: 'Yes' })
设置一个标记,其中包含Some History Changes
的历史记录更改触发器,并具有两个规则:gtm.oldUrl
等于https://example.com/old-url
gtm.newUrl
等于https://example.com/new -url
这是一个示例。
You can use two undocumented variables populated on a history change event, i.e.,
gtm.oldUrl
andgtm.newUrl
.This is an example of what GTM will push to the dataLayer when the history change event is enabled and triggered:
For some reason, the variables are undocumented in the variable docs and unavailable as built-in variables to be enabled.
Simply configure two new dataLayer variables to capture them. Once that's out of the way, you can use them in any logic you need to apply in GTM.
In your case, set up a tag to
dataLayer.push({ Car_NewUser_Create: 'Yes' })
with a history change trigger forSome History Changes
with two rules:gtm.oldUrl
equalshttps://example.com/old-url
gtm.newUrl
equalshttps://example.com/new-url
Here's an example.