magento如何通过category_id取得该分类的所有商品

$category_id = 123;
$category = Mage::getModel(‘catalog/category’)->load($category_id);
$_productCollection = $category->getProductCollection();

你可能感兴趣的:(magento如何通过category_id取得该分类的所有商品)