我在 Magento 中创建了测试模块,我从浏览器调用更改操作 url,并打印了目录/产品的 SQL 查询。
我使用此代码
<?php
class Test_Demo_IndexController extends Mage_Core_Controller_Front_Action
{
public function indexAction()
{
$this->loadLayout();
$block = $this->getLayout()->createBlock('capacityweb/Test','Test',array('template' => 'capacity/web/test.phtml'));
$this->getLayout()->getBlock('content')->append($block);
$this->renderLayout();
}
public function changeAction()
{
$this->loadLayout();
$this->renderLayout();
$action=$this->getRequest()->getParam('action');
$id=$this->getRequest()->getParam('id');
if($action!=null && $id!=null)
{
$relContact = Mage::getModel('catalog/product')->getCollection()->load($id);
}
}
}
如果我使用
$relContact = Mage::getModel('catalog/product')->getCollection()->load($id);
然后 magento 显示 SQL 查询,而不是这个
我用
$relContact = Mage::getModel('catalog/product')->getCollection();
然后magento不显示任何东西。
那么如何解决问题
$relContact = Mage::getModel('catalog/product')->getCollection()->load($id);