Magento2 - Uzyskaj adres URL kategorii według identyfikatora


11

Próbuję uzyskać klucz adresu URL dowolnej kategorii o identyfikatorze. Mam to;

$categoryId = 3;
$_objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$object_manager = $_objectManager->create('Magento\Catalog\Model\Category')->load($categoryId);
print_r($object_manager->getData());

I to działa (w print_r jest klucz URL, którego potrzebuję), ale kategoria 3 to kategoria najwyższego poziomu. Ilekroć próbuję podkategorii (powiedzmy ID 5), otrzymuję pustą tablicę. Po prostu brakuje mi słów, nie mogę tego rozgryźć.

W Magento 1.x robiłem to: Mage::getModel('catalog/category')->load($catID)->getUrl()i to działało.

TL; DR: Ten kod działa, zmień identyfikator do (poprawnie) ID kategorii i zmian getData()do getUrl()kompletnego kategorii URL, lub getName()do nazwy kategorii.

Odpowiedzi:


29

Aby uzyskać adres URL kategorii, musisz użyć \Magento\Catalog\Model\Categoryfunkcji w następujący getUrl()sposób:

$category->getUrl()

Możesz również uzyskać adres URL CategoryRepositoryInterface

nameSpace ['Your_nameSpace'] 
use Magento\Catalog\Api\CategoryRepositoryInterface;
class ['Your_Class_name']
    protected $_storeManager;
    protected $categoryRepository;
    public function __construct(
        \Magento\Store\Model\StoreManagerInterface $storeManager,
        \Magento\Catalog\Model\CategoryRepository $categoryRepository,
    ) {
        .........
        $this->_storeManager = $storeManager;
        $this->categoryRepository = $categoryRepository;
    }

     public  function getCategory()
    {
            $category = $this->categoryRepository->get($categoryId, $this->_storeManager->getStore()->getId());

        return $category->getUrl();
    }
} 

Dziękuję :) Zmiana getData na getUrl była właściwym połączeniem.
Alex Timmer,

Dobrze działa, głosowałem na ciebie
Pushpendra Singh

Dobra odpowiedź, bardzo pomocna. +1
Shoaib Munir

12

Zawsze staraj się korzystać z repozytorium. Musisz wstrzyknąć w następujący sposób:

/ **
 * @var \ Magento \ Catalog \ Helper \ Category
 * /
chroniony $ categoryHelper;

/ **
 * @var \ Magento \ Catalog \ Model \ CategoryRepository
 * /
chronione $ categoryRepository;


funkcja publiczna __construct (
    \ Magento \ Katalog \ Pomocnik \ Kategoria $ categoryHelper,
    \ Magento \ Catalog \ Model \ CategoryRepository $ categoryRepository,

) {
    $ this-> categoryHelper = $ categoryHelper;
    $ this-> categoryRepository = $ categoryRepository;
}

Dla adresu URL kategorii

$ categoryId = 3;
$ categoryObj = $ this-> categoryRepository-> get ($ categoryId);
echo $ this-> categoryHelper-> getCategoryUrl ($ categoryObj);

Wspaniale! Dziękuję. Próbowałem zapętlić identyfikatory za pomocą CategoryModel, który ładował te same dane przez iteracje. Uratowałeś mnie po drapaniu głowy!
domdambrogia,

6

Możesz spróbować poniżej kodu.

$categoryId = 5;
$_objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$object_manager = $_objectManager->create('Magento\Catalog\Model\Category')->load($categoryId);
echo "<pre>";
print_r($object_manager->getData());

Zanim użyjesz identyfikatora kategorii, potwierdź, że identyfikator kategorii istnieje w adminie lub zwróci pustą tablicę.

Daj mi znać, jeśli masz jakieś pytania.


Tak, dokładnie taki kod napisałem w OP. Ale masz rację, próbowałem na niektórych dokumentach tożsamości, które, jak myślałem, istniały, ale nie.
Alex Timmer,

1

Odkryłem, że kiedy potrzebuję adresów URL kategorii z różnych domen (na widok sklepu), musiałem utworzyć nowy obiekt Url na widok sklepu.

use Magento\Catalog\Model\Category;
use Magento\Catalog\Model\ResourceModel\Category\CollectionFactory;
use Magento\Framework\UrlFactory;

class CacheWarmer
{
    /** @var CollectionFactory */
    protected $categoryCollectionFactory;

    /** @var \Magento\Store\Model\StoreManagerInterface */
    protected $storeManager;

    /** @var UrlFactory */
    protected $urlFactory;

    public function __construct(
        CollectionFactory $categoryCollectionFactory,
        \Magento\Store\Model\StoreManagerInterface $storeManager,
        UrlFactory $urlFactory
    )
    {
        $this->categoryCollectionFactory = $categoryCollectionFactory;
        $this->storeManager = $storeManager;
        $this->urlFactory = $urlFactory;
    }

    /**
     * @throws \Magento\Framework\Exception\LocalizedException
     */
    public function execute()
    {
        $stores = $this->storeManager->getStores();

        foreach ($stores as $store) {

            $this->storeManager->setCurrentStore($store);

            $collection = $this->categoryCollectionFactory->create();
            $collection->addUrlRewriteToResult();
            $collection->addIsActiveFilter();

            $urlCreator = $this->urlFactory->create();

            /** @var Category $category */
            foreach ($collection as $category) {

                $requestPath = $category->getRequestPath();
                if (!$requestPath) {
                    continue;
                }

                $url = $urlCreator->getDirectUrl($category->getRequestPath());

                $result = @file_get_contents($url);
            }
        }
    }
}

0

Działa to dobrze w moim niestandardowym bloku (przy użyciu repozytorium kategorii i DI):

/**
 * Constructor
 */
public function __construct(
  \Magento\Catalog\Model\CategoryRepository $categoryRepository,
  // ...
) 
{
  $this->_categoryRepository = $categoryRepository;
  // ...
}


/**
 * Return the category object by its id.
 * 
 * @param categoryId (Integer)
 */
public function getCategory($categoryId)
{
  return $this->getCategoryRepository()->get($categoryId);
}


/**
 * Category repository object
 */
protected $_categoryRepository;

Wreszcie w pliku szablonu po prostu używam:

$this->getCategory(3)->getUrl()

0

@ andrea Zaktualizuj metodę getCategory. Albo działa dobrze.

/**
 * Return the category object by its id.
 * 
 * @param categoryId (Integer)
 */
public function getCategory($categoryId)
{
  return $this->_categoryRepository->get($categoryId);
}
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.