GTM变量模板无法用作customTask

时间:2019-11-21 17:56:11

标签: javascript google-tag-manager

我正在尝试编写一个GTM变量模板来构建customTask。使用下面的最小示例模板代码,当我使用内置变量作为customTask时,控制台日志将变量 model 显示为undefined。通过模拟 model 通过进行单元测试。控制台中没有Javascript错误,如果尝试将其包装在try-catch中,则在尝试保存它时会遇到解析错误。我在这里想念什么吗?

const consoleLog = require('logToConsole');
var log = consoleLog;
return function(model) {
  log('** Inside Template Code **');
  log(model);
  var location = model.get('location');
  log('** location: ' + location);   
};

0 个答案:

没有答案