我在不同的论坛上尝试过,发现以下代码对我有帮助,但它没有为我返回任何东西。
$limit = ($limit == 0) ? 50 : $limit;
$category = Mage::getModel('catalog/category')->load($cat_id);
$category->setIsAnchor(1);
$products = Mage::getResourceModel('catalog/product_collection')
->addAttributeToSelect('*')
->addAttributeToFilter("status", array("eq" => 1))
->addAttributeToFilter("visibility", array("eq" => 1))
->setPageSize($limit)
->addCategoryFilter($category)
->load();
$products
总是零长度。