我希望根据产品ID从补充表格中创建动态/跟踪链接。
URL格式为:
https: // site.com/product/{$id}
使用${clickthrough('my_products',table.id)}
方法无效。跟踪后得到的URL不会转换ID参数,并导致链接断开。
想知道,点击功能应该是什么,链接表应该包含什么。 谢谢,
答案 0 :(得分:0)
您的URL格式需要更新为:
https://site.com/product/ $ {id}
然后,您需要添加参数table.id以传递给id(RI通常会将id识别为table.id,因此这是不必要的,除非您在<#data>循环中对URL进行编码字段别名的地方):
$ {clickthrough('my_products','id ='+ table.id)}
或者您可以将$ {id}更改为$ {table.id}以直接调用该字段,因此您不必在点击后代码中编写参数:
https://site.com/product/ $ {table.id}
$ {clickthrough('my_products')}