我正在制作一个简单的magento块和模板。
在我的自定义模块中,我有一个config.xml
<?xml version="1.0"?>
<config>
<modules>
<AAA_Recentproducts>
<version>1.0</version>
</AAA_Recentproducts>
</modules>
<global>
<blocks>
<recentproducts>
<class>AAA_Recentproducts_Block</class>
</recentproducts>
</blocks>
</global>
</config>
这是我的座位
<?php
class AAA_Recentproducts_Block_Recentproducts extends Mage_Core_Block_Template {
public function getRecentProducts() {
$products = Mage::getModel("catalog/product")
->getCollection()
->addAttributeToSelect('*')
->setOrder('entity_id', 'DESC')
->setPageSize(5);
return $products;
}
}
最后我的模板文件:
<?php
$products = $this->getRecentProducts();
//$products = [];
?>
<div id="product_list">
<h1>Recent Products</h1>
<?php if (is_array($products) && count($products)) { ?>
<?php foreach($products as $product) { ?>
<div>
product
</div>
<?php } ?>
<?php } ?>
</div>
我得到的错误是:2015-11-02T08:53:55+00:00 ERR (3): Notice: Undefined variable: this in /var/www/html/magento/app/design/frontend/smartwave/granada/template/recentproducts/recentproducts.phtml on line 2
有没有人知道为什么会出现这种错误?
答案 0 :(得分:0)
如果您不在课堂内,则无法使用$this
。您必须创建AAA_Recentproducts_Block_Recentproducts
的实例并在该对象上调用该函数。
$object = new AAA_Recentproducts_Block_Recentproducts();
$products = $object->getRecentProducts();
我不推荐变量名$object
,但我现在想不出更好的名称。你明白了。
答案 1 :(得分:0)
如果您没有布局xml文件,可以使用以下代码
调用该块$block = Mage::app()->getLayout()->createBlock('recentproducts/recentproducts');
$products = $block->getRecentProducts();
在phtml文件中使用此代码
答案 2 :(得分:0)
对我而言,问题来自$this->getTest();
在&#34;之间有一个奇怪的隐藏角色 - &#34;
你应该可以使用这个,因为在Block_Template中有fetchView的包含。