2

我想就我在 Magento 遇到的这个错误寻求一些帮助

致命错误:在第 163 行的 /Applications/MAMP/htdocs/mysite/app/code/local/Mage/Catalog/Helper/Image.php 中的非对象上调用成员函数 getData()

我创建了一个 CMS 页面并使用以下代码添加了一个 template.phtml 文件:

{{block type="core/template" product_id="177" template="page/thumbnails.phtml"}}

模板文件使用产品 ID 显示产品图像和缩略图。当我将代码放在 view.phtml 中时,代码可以工作,但是当我将它添加到 CMS 页面时,我得到了错误,我只是不知道为什么?

我真的很感激一些帮助...

thumbnails.phtml 的代码:

                        <?php
    $_product = $this->getProduct();
    $_helper = $this->helper('catalog/output');
    $_gallery = $this->getGalleryImages();
    $_resize = 265;
    ?>
    <style type="text/css">
    .product-img-box .more-views li.slide-current a{ border:2px solid #aaa; }
    .product-img-box .product-image-zoom img { cursor: pointer; }
    #slide-loader{ visibility:hidden; position:absolute; top:auto; left:auto; right:2px;      bottom:2px; width: 25px; height: 25px; }
</style>
<p class="product-image-zoom">
    <?php
        $_img = '<img id="image" src="'.$this->helper('catalog/image')->init($_product, 'image')->resize($_resize).'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" onclick="popWin(\''.$this->getGalleryUrl().'.\', \'gallery\', \'width=300,height=300,left=50,top=50,location=no,status=yes,scrollbars=yes,resizable=yes\'); return false;" />';
        echo $_helper->productAttribute($_product, $_img, 'image')
    ?>
    <img id="slide-loader" src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>" />
</p>
<p class="a-center" id="track_hint"><?php echo $this->__('Click on above image to view full picture') ?></p>

<?php if (count($_gallery) > 0): ?>
<div class="more-views">
    <h4><?php echo $this->__('More Views') ?></h4>
    <ul>
    <?php foreach ($_gallery as $_image): ?>
        <li>
            <a href="<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'image', $_image->getFile()); ?>" onclick="slide('<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'image', $_image->getFile())->resize($_resize) ?>',<?php echo ($s = isset($s) ? ++$s : 0) ?>,'<?php echo $this->getGalleryUrl($_image) ?>'); return false;"><img src="<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile())->resize(56); ?>" alt="<?php echo $this->htmlEscape($_image->getLabel()) ?>" title="<?php echo $this->htmlEscape($_image->getLabel()) ?>" /></a>
        </li>
    <?php endforeach; ?>
    </ul>
</div>
<?php endif; ?>
<script type="text/javascript">
function slide(url,num,gallery){
    if (typeof slide.loading == 'undefined') slide.loading = false;
    if(slide.loading) return false;

    var loader = new Image();
    $(loader).observe('load', function(){

        $('slide-loader').setStyle({'visibility':'hidden'});

        $$('div.more-views li').each(function(el,i){
            (i==num) ? el.addClassName('slide-current') : el.removeClassName('slide-current');
        });

        var dummy = new Element('img', { src: url }).setOpacity(0);
        new Insertion.After('image', dummy);
        new Effect.Opacity(dummy, { duration:.5, from:0, to:1.0 });
        new Effect.Opacity($('image'), { duration:.5, from:1.0, to:0, 
             afterFinish: function(){
                 $('image').writeAttribute('src',url).setOpacity(1).observe('click',function(e){
                     Event.stop(e);
                     popWin(gallery, 'gallery', 'width=300,height=300,left=50,top=50,location=no,status=yes,scrollbars=yes,resizable=yes'); 
                     return false;
                 })
                 dummy.remove();
                 slide.loading = false;
             }
        });
    });

    $('slide-loader').setStyle({'visibility':'visible'});
    loader.src=url;
    slide.loading = true;
return false;
});
</script>
4

1 回答 1

1

当在 view.phtml 中使用此代码时,您的块类将不是核心/模板,因此诸如“$this->getImageLabel()”之类的引用将导致您描述的错误。

要亲自查看此问题,请将其添加到 view.phtml 和 thumbnails.phtml 的顶部

echo get_class($this);

然后您可以更新您的内联静态块类型。根据记忆,它可能是目录/产品,但一旦你完成了上面的建议,你就可以很容易地弄清楚这一点。

{{block type="catalog/product" product_id="177" template="page/thumbnails.phtml"}}
于 2012-11-24T00:51:48.157 回答