我尝试使用自定义产品系列生成搜索结果页面。计划是根据客户可以在自定义html表单中选择的属性创建产品集合。我有一个 IndexController
public function indexAction() {
$this->loadLayout();
$this->renderLayout();
}
public function postAction() {
$postData = $this->getRequest()->getPost();
$productCollection = Mage::getModel('mymodule/api')->checkPost($postData);
//$this->_redirect(???);
}
从我的form.phtml接收postData并将其传递给我的checkPost函数(postData得到评估),它返回一个自定义的productCollection。我想将客户从表单重定向到类别/搜索结果页面,并将productCollection作为结果,但我不知道如何完成这项工作。