使用Javascript IF函数创建Google跟踪代码管理器变量

问题描述

我正在尝试在Google跟踪代码管理器中创建一个自定义变量。我需要它在...时显示0值。

客户使用折扣代码购物,其中包含“礼品券”字样
AND
它产生负收入。

否则,它应该只显示标准收入(有时需要负收入,因此为什么在使用礼券时它只能显示为0)

我尝试了以下

function () { if ({{discount Code Used}} = str.includes("Gift Voucher") && {{Revenue}}<0 ) {return 0; } else { return {{Revenue}}; }}

但这将返回一个未定义的值

有人能帮忙吗?

解决方法

您的if状况的前半段有些偏离:

{{Discount Code Used}} = str.includes('Gift Voucher')

使用字符串的.includes()方法的正确方法如下:

{{Discount Code Used}}.includes('Gift Voucher')

我建议使用.indexOf()而不是.includes(),因为更多的浏览器都支持它。

{{Discount Code Used}}.indexOf('Gift Voucher') !== -1

如果仍返回undefined,请再次检查Discount Code UsedRevenue是否设置为正确的值。