调用 s.tl 会抛出 TypeError
如果我将 s.products 设置为类似于
s.products = ";101;;;;eVar33=mystatus";
不幸的是,当脚本稍后调用 s.tl
时,它会崩溃,我会遇到 Omniture 问题。该错误在 Firefox 中的描述如下:
类型错误:tl 不是函数
当我像往常一样放入产品时,只有产品 s.tl
有效:
s.products = ";101";
有人知道为什么脚本可能会像这样崩溃吗?我错过了什么吗?
I'm having a problem with Omniture that happens if I set s.products to something akin to
s.products = ";101;;;;eVar33=mystatus";
Unfortunately when the script later calls s.tl
, it crashes. The error has the following description in Firefox:
TypeError: tl is not a function
When I put in a product like usual, with only the product s.tl
works:
s.products = ";101";
Anyone knows why the script may crash like this? Am I missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,您将必须提供更多背景信息。更多代码,链接到问题所在,等等。我尝试了以下测试代码:
我看到产品在请求中发送得很好,没有 .js 错误或什么都没有。
Well you're going to have to provide some more context. More code, link to where the issue is, something. I tried the following test code:
and I see products being sent in request just fine, no .js errors or nothin'.