Magento中的打孔不起作用

Posted

技术标签:

【中文标题】Magento中的打孔不起作用【英文标题】:Hole Punching in Magento not Working 【发布时间】:2014-08-06 11:03:26 【问题描述】:

我为目录/产品价格块尝试了这个,但我得到了:

致命错误:在 /var/www/html/app/code/core/Mage/Catalog/Block/Product/Price.php 中的非对象上调用成员函数 getCacheIdTags()在第 176 行

有什么想法吗?

<?xml version="1.0" encoding="UTF-8"?>
<config>
 <placeholders>
  <catalog_product_price>
    <block>catalog/product_price</block>
    <placeholder>TEST_CACHE</placeholder>
    <container>Test_PageCache_Model_Container_Cache</container>
    <cache_lifetime>0</cache_lifetime>
  </catalog_product_price>
 </placeholders>
</config>

还有我的容器

class Test_PageCache_Model_Container_Cache extends Enterprise_PageCache_Model_Container_Abstract

   protected function _getCacheId()
   
       return 'TEST_CACHE' . md5($this->_placeholder->getAttribute('cache_id'));
   

   protected function _renderBlock()
   
       $blockClass = $this->_placeholder->getAttribute('block');
       $template = $this->_placeholder->getAttribute('template');

       $block = new $blockClass;
       $block->setTemplate($template);

       return $block->toHtml();
   

   protected function _saveCache($data, $id, $tags = array(), $lifetime = null)  return false; 

我启用了 FPC 来检查这个,但是当我刷新块所在的页面时,我得到了后面提到的错误。

谢谢

【问题讨论】:

【参考方案1】:

这样做解决了:

public function getCacheKeyInfo() 
    $data = parent::getCacheKeyInfo();

    if(Mage::registry('current_product'))
    
        **$data['product'] = Mage::registry('current_product')->getId();** //can be a product id, etc.
    
    return $data;

然后在我的缓存容器中:

 protected function _renderBlock()

    try
    
        $blockClass = $this->_placeholder->getAttribute('block');
        $template = $this->_placeholder->getAttribute('template');


        $block = new $blockClass;
        $block->setTemplate($template);
        **$block->setProductId($this->_placeholder->getAttribute('product'));**

        return $block->toHtml();
    
    catch(Exception $ex)
    
        Mage::log($ex->getMessage(), null, "system2.log");
    

【讨论】:

以上是关于Magento中的打孔不起作用的主要内容,如果未能解决你的问题,请参考以下文章

自定义模块中的 Magento Layout xml 不起作用

使用 jQuery Mobile 和 jQuery 可排序的第一页加载时触摸打孔不起作用

没有 index.php,除主页外的 Magento URL 不起作用

电子邮件模板Magento不起作用

magento:某些 htaccess 重定向不起作用

Magento密码重置不起作用