簡體   English   中英

Magento從特定類別檢索孩子

[英]Magento retrieve children from specific category

我在正確的時間關閉li和ul時遇到問題。

使用代碼,我們可以在magento商店中檢索特定類別的所有childeren。

現在的問題是我想將所有子項都划分為列表。 因此,我們可以按類別->子類別->子子類別對它們進行排序。 我希望自己的結構成為;

<ul>
    <li>
        <a>Head Child</a>
        <ul>
            <li>
                <a>Sub child</a>
                <ul>
                    <li><a>Sub sub child</a></li>
                    <li><a>Sub sub child</a></li> 
                </ul>
            </li>
        </ul>
    </li>
    <li>
        <a>Head Child</a>
        <ul>
            <li>
                <a>Sub child</a>
                <ul>
                    <li><a>Sub sub child</a></li>
                    <li><a>Sub sub child</a></li> 
                </ul>
            </li>
        </ul>
    </li>
</ul>

我現在得到的輸出是

<ul>
    <a title="View the products for the " href="#">Head child</a>
    <li class="sub_cat">
        <a title="View the products for the " href="#">Sub child</a>
    </li>
    <li class="sub_cat">
        <a title="View the products for the " href="#">Sub sub child</a>
    </li>
</ul>

這是我們的php代碼;

<?php
$cat = Mage::getModel('catalog/category')->load(9);
$subcats = $cat->getChildren();

foreach(explode(',',$subcats) as $subCatid)
{
    $_category = Mage::getModel('catalog/category')->load($subCatid);
    if($_category->getIsActive()) {
        echo '<ul><a href="'.$_category->getURL().'" title="View the products for the "'.$_category->getName().'" category">'.$_category->getName().'</a>';
        $sub_cat = Mage::getModel('catalog/category')->load($_category->getId());
        $sub_subcats = $sub_cat->getChildren();
        foreach(explode(',',$sub_subcats) as $sub_subCatid)
        {
            $_sub_category = Mage::getModel('catalog/category')->load($sub_subCatid);
            if($_sub_category->getIsActive()) {
                echo '<li class="sub_cat"><a href="'.$_sub_category->getURL().'" title="View the products for the "'.$_sub_category->getName().'" category">'.$_sub_category->getName().'</a>';
                $sub_sub_cat = Mage::getModel('catalog/category')->load($sub_subCatid);
                $sub_sub_subcats = $sub_sub_cat->getChildren();

                foreach(explode(',',$sub_sub_subcats) as $sub_sub_subCatid)
                {
                    $_sub_sub_category = Mage::getModel('catalog/category')->load($sub_sub_subCatid);
                    if($_sub_sub_category->getIsActive()) {
                        echo '<li class="sub_cat"><a href="'.$_sub_sub_category->getURL().'" title="View the products for the "'.$_sub_sub_category->getName().'" category">'.$_sub_sub_category->getName().'</a>';
                    }
                }
            }
        }
        echo '</ul>';
    }
}

?>

您應該考慮在這里使用遞歸函數

$cat =  Mage::getModel('catalog/category')->load(9);
$html = '';
$html = getSubCategoriesHTML($cat, $html);



function getSubCategoriesHTML($cat, $html) {

    $html .= '<a href="'.$cat->getURL().'" title="View the products for the "'.$cat->getName().'" category">'.$cat->getName().'</a>';
    $html .= '<ul>';

    $subcats = $cat->getChildren();
    foreach(explode(',',$subcats) as $subCatid) {
        $_category = Mage::getModel('catalog/category')->load($subCatid);
        if($_category->getIsActive()) {
            $html .= '<li>';
            $html .=  getSubCategoriesHTML($_category, $html);
            $html .= '</li>;
        }
    }

    $html .= '</ul>';
    return $html;
}

您可以在助手或類別模型中添加此功能。
我根本沒有測試過,因此可能無法正常工作。 但我希望它能對您有所幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM