Magento cms页面xml布局产品视图块传递product_id变量

时间:2014-03-17 23:28:09

标签: magento

我在Magento中创建了CMS页面,我想设置产品ID。在xml布局中,更新是:

<reference name="content">
   <block type="catalog/product_view" name="product.info" template="catalog/product/view.phtml">
   <action method="setData">
      <name>product_id</name>
      <value>1</value>
   </action>
   <block type="catalog/product_view_media" name="product.info.media" as="media" template="catalog/product/view/media.phtml"/>
   <block type="core/text_list" name="alert.urls" as="alert_urls" translate="label">
      <label>Alert Urls</label>
   </block>
   <action method="setTierPriceTemplate"><template>catalog/product/view/tierprices.phtml</template></action>
   <block type="catalog/product_list_upsell" name="product.info.upsell" as="upsell_products" template="catalog/product/list/upsell.phtml">
      <action method="setColumnCount"><columns>4</columns></action>
      <action method="setItemLimit"><type>upsell</type><limit>4</limit></action>
   </block>
   <block type="catalog/product_view_additional" name="product.info.additional" as="product_additional_data" />
   <block type="catalog/product_view_description" name="product.description" as="description" template="catalog/product/view/description.phtml">
      <action method="addToParentGroup"><group>detailed_info</group></action>
   </block>
   <block type="catalog/product_view_attributes" name="product.attributes" as="additional" template="catalog/product/view/attributes.phtml">
   <action method="addToParentGroup"><group>detailed_info</group></action>
   </block>
   <block type="catalog/product_view" name="product.info.addto" as="addto" template="catalog/product/view/addto.phtml"/>
   <block type="catalog/product_view" name="product.info.addtocart" as="addtocart" template="catalog/product/view/addtocart.phtml"/>
   <block type="core/text_list" name="product.info.extrahint" as="extrahint" translate="label">
      <label>Product View Extra Hint</label>
   </block>
   <block type="catalog/product_view" name="product.info.options.wrapper" as="product_options_wrapper" template="catalog/product/view/options/wrapper.phtml" translate="label">
      <label>Info Column Options Wrapper</label>
   <block type="core/template" name="options_js" template="catalog/product/view/options/js.phtml"/>
   <block type="catalog/product_view_options" name="product.info.options" as="product_options" template="catalog/product/view/options.phtml">
      <action method="addOptionRenderer"><type>text</type><block>catalog/product_view_options_type_text</block><template>catalog/product/view/options/type/text.phtml</template></action>
      <action method="addOptionRenderer"><type>file</type><block>catalog/product_view_options_type_file</block><template>catalog/product/view/options/type/file.phtml</template></action>
      <action method="addOptionRenderer"><type>select</type><block>catalog/product_view_options_type_select</block><template>catalog/product/view/options/type/select.phtml</template></action>
      <action method="addOptionRenderer"><type>date</type><block>catalog/product_view_options_type_date</block><template>catalog/product/view/options/type/date.phtml</template></action>
   </block>
   <block type="core/html_calendar" name="html_calendar" as="html_calendar" template="page/js/calendar.phtml"/>
   </block>
   <block type="catalog/product_view" name="product.info.options.wrapper.bottom" as="product_options_wrapper_bottom" template="catalog/product/view/options/wrapper/bottom.phtml" translate="label">
       <label>Bottom Block Options Wrapper</label>
       <action method="insert"><block>product.tierprices</block></action>
       <block type="catalog/product_view" name="product.clone_prices" as="prices" template="catalog/product/view/price_clone.phtml"/>
       <action method="append"><block>product.info.addtocart</block></action>
       <action method="append"><block>product.info.addto</block></action>
   </block>
   <block type="core/template_facade" name="product.info.container1" as="container1">
       <action method="setDataByKey"><key>alias_in_layout</key><value>container1</value></action>
       <action method="setDataByKeyFromRegistry"><key>options_container</key><key_in_registry>product</key_in_registry></action>
       <action method="append"><block>product.info.options.wrapper</block></action>
       <action method="append"><block>product.info.options.wrapper.bottom</block></action>
   </block>
   <block type="core/template_facade" name="product.info.container2" as="container2">
       <action method="setDataByKey"><key>alias_in_layout</key><value>container2</value></action>
       <action method="setDataByKeyFromRegistry"><key>options_container</key><key_in_registry>product</key_in_registry></action>
       <action method="append"><block>product.info.options.wrapper</block></action>
       <action method="append"><block>product.info.options.wrapper.bottom</block></action>
   </block>
       <action method="unsetCallChild"><child>container1</child><call>ifEquals</call><if>0</if><key>alias_in_layout</key><key>options_container</key></action>
       <action method="unsetCallChild"><child>container2</child><call>ifEquals</call><if>0</if><key>alias_in_layout</key><key>options_container</key></action>
   </block>

我尝试通过setData函数设置产品ID,但我有消息:

  

致命错误:在第56行的... \ app \ code \ core \ Mage \ Catalog \ Block \ Product \ View.php中的非对象上调用成员函数getMetaTitle()

我也尝试在内容中插入代码:

  

{{block type =&#34; catalog / product_view&#34;名称=&#34; product.info&#34;模板=&#34;目录/产品/ view.phtml&#34; PRODUCT_ID =&#34; 1&#34;}}

上面的代码显示了产品页面,但是childHtml方法没有呈现子块。如何传递product_id变量以阻止它显示带有子块的产品页面?

0 个答案:

没有答案