0

我的 Magento 应用程序中有如下代码。

$tealium = $helper->getTealiumObject($store, $this);
$tealium->pageType("Cart");
echo $tealium->render("udo");
echo $helper->getDiagnosticTag($store);
$jsonUDO = $tealium->render("json");

echo <<<EOD
<script type="text/javascript">
document.addEventListener('DOMContentLoaded',function(){
    Checkout.prototype.gotoSection = function(section) {
        utag.data=$jsonUDO;
        utag.data["page_name"] = section;
        utag.view(utag.data);
        section = $('opc-'+section);
        section.addClassName('allow');
        this.accordion.openSection(section)
    }
});
</script>

EOD

我得到ReferenceError: utag is not defined 浏览器控制台中的错误仅当我处于私有模式并中断执行时,在正常模式下它不会产生任何问题。

导致此问题的 Firefox 45.0.1 发生了什么变化?

4

1 回答 1

1

最后我得到了答案。

在隐私浏览模式下,Firefox 会阻止跟踪。我有一个 javascript 文件被 Firefox http://tags.example.com/utag/some_name/client_name/prod/utag.js阻止

以下是控制台中的消息

由于启用了跟踪保护,“ http://tags.example.com/utag/some_name/client_name/prod/utag.js ”中的资源被阻止。

于 2016-04-01T11:18:59.253 回答