마 젠토 2 : 프론트 엔드에 관리자 카테고리 트리 표시


10

관리자 기본 카테고리 트리와 같이 프론트 엔드에 카테고리 트리를 표시하고 싶습니다.

프론트 엔드 측의 사용자 정의 모듈 및 컨텐츠 영역에 카테고리 트리 구조를 표시해야합니다.

도움을 주시면 감사하겠습니다.

감사.



카테고리 이름 만 표시 할뿐만 아니라 관리자와 같은 트리를 가진 카테고리가 필요합니다.
Suresh Chikani

를 참조하십시오 : mage2.pro/t/topic/912는 그것은 당신을 도울 것입니다
Nikunj Vadariya

1
@nikunjVadariya 제안 해 주셔서 감사합니다. 내가 체크해 볼게.
Suresh Chikani

답변:


4

1) Magento 2의 루트 디렉토리에서 "app"로 이동하여 새 디렉토리 코드를 작성하십시오. 그런 다음 app / code 에 네임 스페이스 및 모듈 이름 이라는 두 개의 디렉토리를 더 만듭니다 . 최종 디렉토리는 app / code / Demo / CategoryTree와 같습니다 .

데모 와 같은 네임 스페이스CategoryTree 모듈의 이름으로.

2) app / code / Demo / CategoryTree / etc 에서 "module.xml"파일을 생성 하고 아래 코드를 파일에 붙여 넣으십시오.

<?xml version="1.0"?>
<!--
/**
 * Copyright © 2013-2017 Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
    <module name="Demo_CategoryTree" setup_version="1.0.0">
        <sequence>
            <module name="Magento_Catalog"/>
        </sequence>
    </module>
</config>

3) app / code / Demo / CategoryTree / etc / frontend 에서 "route.xml"파일을 생성 하고 아래 코드를 파일에 붙여 넣습니다.

<?xml version="1.0"?>
<!--
/**
 * Copyright © 2013-2017 Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
    <router id="standard">
        <route id="categorytree" frontName="categorytree">
            <module name="Demo_CategoryTree" />
        </route>
    </router>
</config>

4) app / code / Demo / CategoryTree 에서 "registration.php"파일을 생성 하고 아래 코드를 파일에 붙여 넣으십시오.

<?php
/**
 * Copyright © 2013-2017 Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

\Magento\Framework\Component\ComponentRegistrar::register(
    \Magento\Framework\Component\ComponentRegistrar::MODULE,
    'Demo_CategoryTree',
    __DIR__
);

5) app / code / Demo / CategoryTree / Controller / Index에 "Index.php"파일을 생성 하고 아래 코드를 파일에 붙여 넣으십시오 :

<?php
/**
 *
 * Copyright © 2013-2017 Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Demo\CategoryTree\Controller\Index;

class Index extends \Magento\Framework\App\Action\Action
{
    /**
     * @var \Magento\Framework\View\Result\PageFactory $resultPageFactory
     */
    protected $resultPageFactory;

    /**
     * @param \Magento\Framework\App\Action\Context $context
     * @param \Magento\Framework\View\Result\PageFactory $resultPageFactory
     */
    public function __construct(
        \Magento\Framework\App\Action\Context $context,
        \Magento\Framework\View\Result\PageFactory $resultPageFactory
    ) {
        $this->resultPageFactory = $resultPageFactory;
        parent::__construct($context);
    }

    /**
     * Renders CATEGORYTREE Index page
     *
     * @param string|null $coreRoute
     * @return \Magento\Framework\Controller\Result\Forward
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function execute($coreRoute = null)
    {
        $resultPage =  $this->resultPageFactory->create();
        $resultPage->getConfig()->getTitle()->set(__('CategoryTree'));
        return $resultPage;
    }
}

6) app / code / Demo / CategoryTree / view / frontend / layout 에서 "categorytree_index_index.xml"파일을 생성 하고 아래 코드를 파일에 붙여 넣으십시오.

<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="2columns-left" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <update handle="styles"/>
    <head>
        <css src="extjs/resources/css/ext-all.css"/>
        <css src="extjs/resources/css/ytheme-magento.css"/>
    </head>
    <body>
        <referenceContainer name="sidebar.additional">
            <block class="Magento\Catalog\Block\Adminhtml\Category\Tree" name="category.tree" template="Demo_CategoryTree::catalog/category/tree.phtml"/>
        </referenceContainer>
    </body>
</page>

7) vendor / magento / module-catalog / view / adminhtml / templates / catalog / category / tree.phtml 에서 app / code / Demo / CategoryTree / view / frontend / templates / catalog / category로 복사

8) app / code / Demo / CategoryTree / view / frontend 에서 "requirejs-config.js"파일을 생성 하고 아래 코드를 파일에 붙여 넣으십시오.

var config = {
    "shim": {
        "extjs/ext-tree": [
            "prototype"
        ],
        "extjs/ext-tree-checkbox": [
            "extjs/ext-tree",
            "extjs/defaults"
        ]
    }
};

9) 루트 디렉토리에서 아래 명령을 실행하십시오.

php bin/magento setup:upgrade
php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento setup:static-content:deploy

10) " http://local-magento.com/categorytree/index/index " 와 같이 url을 실행 하면 아래와 같은 결과가 나옵니다 .

여기에 이미지 설명을 입력하십시오



1

이것이 카테고리 트리를 기반으로 메뉴를 생성하는 데 사용하는 것입니다. 모든 범주가 ​​쉽게 Magento2의 새로운 설치와 함께 제공되는 ID2의 기본 범주 아래에 저장됩니다. 이 구조를 가지고 있지 않다면, $soncats대신 반복하고자하는 카테고리의 ID 배열로 정의 할 수도 있습니다.

<ul id="nav" class="accordion vertnav vertnav-top grid-full wide">
    <?php
$fathercat = $objectManager->create('Magento\Catalog\Model\Category')->load(2); //this is my master root category, holds all other categories so I can loop through.
$soncats = $fathercat->getChildrenCategories(); 
$catids = array(2); 
foreach ($soncats as $soncat) {
    $categoryid = $soncat->getId();
    array_push($catids,$categoryid);
}
for($i = 1; $i < count($catids); ++$i) { 
    $basic = 1;
    $catId = $catids[$i];
    $subcategory = $objectManager->create('Magento\Catalog\Model\Category')->load($catId);
    $subcats = $subcategory->getChildrenCategories();
    $categoryname = $subcategory->getName(); 
    $categoryurl = $subcategory->getUrl(); ?>
    <li class="level0 nav-<?php echo $i;?> level-top parent"><a href="<?php echo $categoryurl ?>" class="level-top"><?php echo $categoryname; ?><span class="caret"> </span> </a><span class="opener"> </span>
        <div class="level0-wrapper dropdown-6col" style="left: 0;">
            <div class="level0-wrapper2">
                <ul class="level0 part">
                    <?php
                    foreach ($subcats as $subcat) { 
                        if ($subcat->getIsActive()) {
                            $subcat_url = $subcat->getUrl(); 
                            $subcat_name = $subcat->getName(); ?>
                            <li class="level1 nav-1-<?php echo $basic;?> item"><a href="<?php echo $subcat_url ?>"><?php echo $subcat_name; ?></a></li>
                            <?php
                        } $basic++; } ?>
                    </ul>
                </div>
            </div>
        </div>
    </li>
    <?php } ?>
</ul>

안녕하세요, 정의되지 않은 변수 $ addedq가있는 것 같습니다.
Purushotam Sangroula

안녕하세요 애니메이션, 덧붙여 주셔서 감사합니다. addedq는 이전에 정의 된 또 다른 변수이며 해당 프로젝트와 관련이 있으므로 코드가 작동하지 않아도됩니다.
John

이 코드는 아동의 하위 카테고리를 표시하지 않습니다
HaFiz Umer

@HaFizUmer는 이상해야 할 것이 이상하지만 Magento 2.0 ~이기 때문에 놀라지 않을 것입니다. Magento 2.1 이상을 수정 / 재 작성해야 할 수도 있습니다
John
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.