我正在尝试在我的local.xml文件中为我的自定义块设置一个变量:
<layout>
<!-- ... -->
<page_homepage>
<!-- ... -->
<reference name="root">
<!-- ... -->
<block type="core/template" name="home_page_sections" template="page/homepage/sections.phtml">
<block type="layout/carousel" name="featured_carousel">
<action method="setData">
<name>filter_attribute</name>
<value>is_featured_product</value>
</action>
</block>
</block>
</reference>
</page_homepage>
</layout>
但是我没有在控制器的另一端获取数据:
class Foo_Layout_Block_Carousel extends Mage_Core_Block_Template
{
public function __construct()
{
parent::__construct();
$filterAttribute = $this->getFilterAttribute(); // Nothing
$filterAttribute = $this->getData('filter_attribute'); // Nada
// Alright, fine, what DO I have?!
var_dump($this->getData()); // array(0) {} ... Argh!
}
}
从我所有的搜索中我发现这确实应该有用,但既然没有,我有一种感觉我错过了一些明显的东西。这是我的布局模块的配置(我使用单个模块来定义主页和我需要的任何其他网站):
<?xml version="1.0"?>
<config>
<modules>
<Foo_Layout>
<version>0.1.0</version>
</Foo_Layout>
</modules>
<global>
<page>
<layouts>
<foo_homepage translate="label">
<label>Homepage</label>
<template>page/homepage.phtml</template>
<layout_handle>page_homepage</layout_handle>
</foo_homepage>
</layouts>
</page>
<blocks>
<layout>
<class>Foo_Layout_Block</class>
</layout>
</blocks>
</global>
</config>
答案 0 :(得分:29)
当布局渲染代码遇到此
时<block type="layout/carousel" name="featured_carousel">
立即实例化该块。这意味着块的 __construct
方法在调用setData
方法之前被称为。因此,在构建时,没有设置任何数据,这就是您对var_dump
的调用返回空数组的原因。
此外,创建后立即将块添加到布局
#File: app/code/core/Mage/Core/Model/Layout.php
...
$block->setLayout($this);
...
发生这种情况时,会调用块的_prepareLayout
方法。
#File: app/code/core/Mage/Core/Block/Abstract.php
public function setLayout(Mage_Core_Model_Layout $layout)
{
$this->_layout = $layout;
Mage::dispatchEvent('core_block_abstract_prepare_layout_before', array('block' => $this));
$this->_prepareLayout();
Mage::dispatchEvent('core_block_abstract_prepare_layout_after', array('block' => $this));
return $this;
}
因此,这意味着布局更新xml中的任何数据集仍然不可用,即使在_prepareLayout
中也是如此。一旦系统完成创建块,它就会移动到下一个XML节点。
<action method="setData">
<name>filter_attribute</name>
<value>is_featured_product</value>
</action>
并调用setData
方法。现在您的块有其数据集。
尝试在块上定义_beforeToHtml
方法并检查数据。 (假设正在渲染你的块)
答案 1 :(得分:3)
我认为该块的定义是错误的。你能试试吗
<block type="layout/carousel"name="featured_carousel" attribute=value>
并在phtml中使用$ this-&gt; getAttribute()
检索值您可以看到下一个示例:
class Elblogdeselo_Blocksparams_Block_Test extends Mage_Core_Block_Abstract{
protected function _toHtml(){
//$nombre=$this->getNombre();
$nombre=$this->getData('nombre');
$html=$html." ".$this->getData('nuevo_parametro');
return $html;
}
}
在后端的定义中,我放入了我的家庭CMS
{{block type="blocksparams/test" name="bloque_con_parametros" nuevo_parametro="nuevo" nombre="david" template="blocksparams/test.phtml"}}
我在扩展程序中找到的另一个例子:
protected function _construct(){
parent::_construct();
$this->setData('customer', Mage::getSingleton('customer/session')->getCustomer());
$this->addData(Mage::getModel('model/model'));
}
答案 2 :(得分:0)
将变量从布局传递到块:
<action method="setData">
<name>variablename</name>
<value>10</value>
</action>
从布局中获取块中变量的值:
$variableName = $this->getVariablename();
$variableName = $this->getData('variablename');