Responsys:使用动态路径创建跟踪 link
Responsys: Create a tracked link with dynamic path
我希望根据产品 ID 从补充 tabled 创建一个 dynamic/tracked link。
URL格式为:
https: // site.com/product/{$id}
使用${clickthrough('my_products',table.id)}
方法无效。结果 URL,在跟踪时不会转换 ID 参数并导致损坏的 link。
想知道点击功能应该是什么以及 link table 中应包括什么。
谢谢,
您的 URL 格式需要更新为:
https : //site.com/product/${id}
然后你需要添加参数table.id传递给id(大多数时候RI会将id识别为table.id,所以这是不必要的,除非你正在编码URL 在字段别名的 <#data> 循环中):
${clickthrough('my_products', 'id=' + table.id)}
或者您可以将 ${id} 更改为 ${table.id} 以直接调用该字段,这样您就不必在点击率中对参数进行编码:
https : //site.com/product/${table.id}
${clickthrough('my_products')}
我希望根据产品 ID 从补充 tabled 创建一个 dynamic/tracked link。
URL格式为:
https: // site.com/product/{$id}
使用${clickthrough('my_products',table.id)}
方法无效。结果 URL,在跟踪时不会转换 ID 参数并导致损坏的 link。
想知道点击功能应该是什么以及 link table 中应包括什么。 谢谢,
您的 URL 格式需要更新为:
https : //site.com/product/${id}
然后你需要添加参数table.id传递给id(大多数时候RI会将id识别为table.id,所以这是不必要的,除非你正在编码URL 在字段别名的 <#data> 循环中):
${clickthrough('my_products', 'id=' + table.id)}
或者您可以将 ${id} 更改为 ${table.id} 以直接调用该字段,这样您就不必在点击率中对参数进行编码:
https : //site.com/product/${table.id}
${clickthrough('my_products')}