尝试让孩子处于活跃的特定类别。请帮忙。我无法做到这一点。我现在能够向他们展示所有但不具体。非常感谢任何帮助。
$category = Mage::getModel('catalog/category')->load(2);
$category->getChildCategories();
$tree = $category->getTreeModel();
$tree->load();
$ids = $tree->getCollection()->getAllIds();
答案 0 :(得分:34)
这里是加载活动类别的代码
/* Load category by id*/
$cat = Mage::getModel('catalog/category')->load($id);
/*Returns comma separated ids*/
$subcats = $cat->getChildren();
//Print out categories string
#print_r($subcats);
foreach(explode(',',$subcats) as $subCatid)
{
$_category = Mage::getModel('catalog/category')->load($subCatid);
if($_category->getIsActive())
{
$caturl = $_category->getURL();
$catname = $_category->getName();
if($_category->getImageUrl())
{
$catimg = $_category->getImageUrl();
}
echo '<h2><a href="'.$caturl.'" title="View the products for this category"><img src="'.$catimg.'" alt="" />'.$catname.'</a></h2>';
}
}
?>
希望这对你有所帮助。
答案 1 :(得分:13)
正如mhaupt所提到的,加载集合而不是循环中的每个类别更快。但是,就我而言,没有必要手动加载子类别。基本上这就是$category->getChildrenCategories()
已经做过的事情。
还有一个过滤器只能获取活动类别。只需在集合上调用addIsActiveFilter()
即可。
a。)通过getChildren()
// 1. Get a list of all child category ids (e.g "12,23,11,42")
$subcategoryIds = $category->getChildren();
// 2. Create collection
$categoryCollection = Mage::getModel('catalog/category')->getCollection();
// 3. Add all attributes to select, otherwise you can not
// access things like $cat->getName() etc.
$categoryCollection->addAttributeToSelect('*');
// 4. Filter by ids
$categoryCollection->addIdFilter($subcategoryIds);
// 5. Add filter to collection to get active categories only
$categoryCollection->addIsActiveFilter();
b。)使用getChildrenCategories()
// 1. Load collection
$categoryCollection= $category->getChildrenCategories();
// 2. Add filter to collection to get active categories only
$categoryCollection->addIsActiveFilter();
一旦访问该集合,就会从数据库中加载该集合。如果未加载集合并且仅调用$subcategories->count()
,则将针对数据库触发“SELECT count(*)”(与强制集合自身加载的count($subcategories)
形成对比)。
迭代收藏
foreach($categoryCollection as $category) {
echo $category->getName();
}
如果在访问后向集合添加更多过滤器,则集合将不会自动再次加载。要将更改应用于集合,只需调用$categoryCollection->load()
即可从数据库重新加载集合。
答案 2 :(得分:5)
那些说使用getAllChildren()而不是getChildren()的人是完全错误的。 两种方法都返回完全相同的东西,但有一点不同,getAllChildren(true)将返回一个数组而不是逗号分隔的字符串。 getAllChildren($ bool asArray)默认为false。我的观点是,无论哪种方式,你都必须使用
Mage::getModel('catalog/category')->load($catId);
除非你使用下面的函数,否则在循环内部。
private function fetchCatsById($onlyThese)
{
$cats = Mage::getModel('catalog/category')
->getCollection(true)
->addAttributeToSelect('*')
->addIdFilter($onlyThese)
->addAttributeToFilter('level','2')
->addIsActiveFilter();
return $cats;
}
$cats = $this->fetchCatsById($onlyThese);
答案 3 :(得分:2)
liyakat写的一个答案,不应该在专业商店中使用,因为它会引发性能问题,因为类别对象有多次n次加载,而是使用类别集合来获取所有孩子
$cat->getAllChildren()
,然后按所需的类别ID限制类别集合,如
$coll->addIdFilter($idFilter);
然后你不必在数据库上加载n次。
请记住,循环中的加载是任何Magento项目中最常用的错误代码示例之一,并避免它们!
答案 4 :(得分:1)
您好,您将看到以下代码
$category_model = Mage::getModel('catalog/category');
$_category = $category_model->load(13);
$all_child_categories = $category_model->getResource()->getAllChildren($_category);
print_r($all_child_categories);
答案 5 :(得分:0)
如果您想要父类别的任意数量的子类别,请单击此处http://magentoo.blogspot.com/2014/01/get-all-subcategories-of-parent-category-magento.html