1

嗨,我是 magento 的新手,所以这对于大多数有经验的开发人员来说可能是显而易见的

我如何找到产品所在的所有类别。我需要使用集合吗?

我有一个产品模型,它正在使用 $product = Mage::getModel('catalog/product')->load() 并将产品 ID 作为参数提供给 load()

现在我需要产品所在的类别对象

请帮忙

4

1 回答 1

1

您假设使用集合是正确的。幸运的是,产品模型为此提供了一个方便的方法:getCategoryCollection()

您将使用如下:

$categoryCollection = $product->getCategoryCollection();
于 2012-07-29T10:19:01.257 回答