Magento 2 Kategori başlığını kullanarak kategori kimliği alın


11

Ben sadece bu tür bir işlevi kullanarak kategori başlığı kullanarak kategori kimliği almak istiyorum.

->load($categoryTitle, 'title')
->getId();

Kullanım örneği: Kategori kimliğini başlığa göre alın ve kimlik verilerini taşıma komut dosyasında diziye yerleştirin.

Yanıtlar:


18

Bunu koleksiyonlar aracılığıyla yapabilirsiniz:

İlk CategoryFactoryönce sınıf yapıcısına bir enjekte etmeniz gerekir .

Magento 2.0 ve 2.1:

public function __construct(
    ...
    \Magento\Catalog\Model\CategoryFactory $categoryFactory
) {
    $this->_categoryFactory = $categoryFactory;
    parent::__construct(...);
}

Daha sonra sınıfınızda başka herhangi bir yerde şunları yapabilirsiniz:

$collection = $this->_categoryFactory->create()->getCollection()->addAttributeToFilter('name',$categoryTitle)->setPageSize(1);

if ($collection->getSize()) {
    $categoryId = $collection->getFirstItem()->getId();
}

Magento 2.2:

public function __construct(
    ...
    \Magento\Catalog\Model\ResourceModel\Category\CollectionFactory $collecionFactory
) {
    $this->_collectionFactory = $collecionFactory;
    parent::__construct(...);
}

Daha sonra sınıfınızda başka herhangi bir yerde şunları yapabilirsiniz:

$collection = $this->collecionFactory
                ->create()
                ->addAttributeToFilter('name',$categoryTitle)
                ->setPageSize(1);

if ($collection->getSize()) {
    $categoryId = $collection->getFirstItem()->getId();
}

Bir hata var PHP Önemli hata: Tanımlanmamış yönteme çağrı Magento \ Katalog \ Model \ CategoryFactory :: getCollection ()
kilis

1
@kilis güncellememi gör, bu sınıfı enjekte etmek için DI'yi kullanmanız gerekir;)
Raphael, Dijital Piyanizm'de

Benim kullanım durumum için $ collection = $ this -> _ objectManager-> create ('\ Magento \ Katalog \ Model \ CategoryFactory') -> getCollection () -> addAttributeToFilter ('title', $ categoryTitle) - > setPageSize (1);
kilis

1
@kilis iyi nesne yöneticisini doğrudan kullanmak kötü bir uygulamadır, her zaman bağımlılık enjeksiyonunu kullanmalısınız
Raphael Dijital Piyanizm'de

Evet biliyorum. Proje yükseltme betiğimiz şu şekilde tasarlanmıştır: /
kilis

4

Bu, en iyi uygulama olarak kabul edilen hizmet sözleşmeleri kullanılarak yapılabilir.

protected $categoryList;

    /**
     * @var SearchCriteriaBuilder
     */
    protected $searchCriteriaBuilder;

    /**
     * @var FilterBuilder
     */
    protected $filterBuilder;

public function __construct(
        ------------
        CategoryListInterface $categoryList,
        SearchCriteriaBuilder $searchCriteriaBuilder,
        FilterBuilder $filterBuilder,
        -----------------
    )
    {
        $this->categoryList = $categoryList;
        $this->searchCriteriaBuilder = $searchCriteriaBuilder;
        $this->filterBuilder         = $filterBuilder;
        parent::__construct(----------);
    }

public function getNameCategory()
    {
        $enableFilter[] = $this->filterBuilder
            ->setField(\Magento\Catalog\Model\Category::KEY_NAME)
            ->setConditionType('like')
            ->setValue(self::CATEGORY_NAME_HELP) // name of the categroy on const
            ->create();


        $searchCriteria = $this->searchCriteriaBuilder
            ->addFilters($enableFilter)
            ->create();

        $items = $this->categoryList->getList($searchCriteria)->getItems();

        if(count($items) == 0)
        {
            return FALSE;
        }

        foreach ($items as $helpCategory)
        {
            $CategoryId = $helpCategory->getId()
        }
return $CategoryId;
    }

+1 En iyi uygulama bölümü için
Akif

3

Bunu kullanarak basit yapabilirsiniz name,

$title = 'womens';
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$collection = $_categoryFactory->create()->getCollection()->addFieldToFilter('name',$title);
echo "<pre>";
print_r($collection->getData());
exit;

FE kullanımı için değil, komut dosyası işlevselliğini yükseltin.
kilis

sadece başlık diyor, cevabımı güncelledim.
Rakesh Jesadiya

2

Phtml dosyası için kod aşağıda deneyin:

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();

$_categoryFactory = $objectManager->get('Magento\Catalog\Model\CategoryFactory');

$categoryTitle = 'Outdoor'; // Category Name

$collection = $_categoryFactory->create()->getCollection()->addFieldToFilter('name', ['in' => $categoryTitle]);

if ($collection->getSize()) {
    $categoryId = $collection->getFirstItem()->getId();
}

1

Kolajımdan yardım aldım

$this->_objectManager->get('Magento\Catalog\Model\CategoryFactory')->create()->getCollection()
        ->addFieldToSelect('name')
        ->addFieldToFilter('name', ['in' => $categoryTitle]);

:) Koleksiyon sadece istediğiniz kaydı döndüreceğinden ->getFirstItem(), yukarıdaki kodu kullanarak tek sonucu elde edebilirsiniz


0

İşleyen bir komut dosyasında aşağıdakileri kullanmanızı öneririm

$obj = $bootstrap->getObjectManager();
$_categoryFactory = $obj->get('Magento\Catalog\Model\CategoryFactory');
$collection = $_categoryFactory->create()->getCollection()->addAttributeToFilter('title',$categoryTitle)->setPageSize(1);

if ($collection->getSize()) {
    $categoryId = $collection->getFirstItem()->getCategoryId();
}

Düzenleme: Bir komut dosyası yaptım ve test ettim. /Scripts/file.php içinde bir dosya oluşturdum

<?php
use Magento\Framework\App\Bootstrap;
require __DIR__ . '/../app/bootstrap.php';

$bootstrap = Bootstrap::create(BP, $_SERVER);

$obj = $bootstrap->getObjectManager();

// Set the state (not sure if this is neccessary)
$obj = $bootstrap->getObjectManager();
$_categoryFactory = $obj->get('Magento\Catalog\Model\CategoryFactory');
$categoryTitle = 'Test';
$collection = $_categoryFactory->create()->getCollection()->addAttributeToFilter('name',$categoryTitle)->setPageSize(1);
if ($collection->getSize()) {
    $categoryId = $collection->getFirstItem()->getId();
    echo $categoryId; 
}

Kodunuzu denedik, ancak ilk satırı $ obj = $ this -> _ objectManager olarak değiştirdi; [Magento \ Framework \ Exception \ LocalizedException] var Geçersiz özellik adı: başlık hatası
kilis

Bu hatayı aldığınızda senaryonumu kullanmadın.
Kay Int Veen

Tamamen test edilmiş bir senaryo ekledim. lütfen kontrol edin. kesinlikle işe yarayacak!
Kay Int Veen

0

Kendi (daha verimli) yöntemimi yazmayı başardım:

$entityTypeId = \Magento\Catalog\Setup\CategorySetup::CATEGORY_ENTITY_TYPE_ID;
$row = $this->queryF("SELECT * FROM `eav_attribute` WHERE `entity_type_id` = $entityTypeId AND `attribute_code` = 'name'", 1);
$nameAttributeId = $row['attribute_id'];
$categoryNames = $this->queryF("SELECT * FROM `catalog_category_entity_varchar` WHERE `attribute_id` = '$nameAttributeId'");
$this->categoryNameIdMap = [];
foreach ($categoryNames as $item) {
    $id = $item['entity_id'];
    $title = $item['value'];
    $this->categoryNameIdMap[$title] = $id;
}

Bu kod tüm title: id'leri bir diziye önbelleğe alır ve yalnızca 2 kez sorgular.

Benim için çalıştı. Kullanımı daha kolay!


0

İlk olarak, toplama fabrika sınıfını enjekte etmeniz gerekir

public function __construct(
    ...
    \Magento\Catalog\Model\ResourceModel\Category\CollectionFactory $collecionFactory ) {
    $this->_collectionFactory = $collecionFactory;
    parent::__construct(...); }

Bundan sonra yönteminizin içinde bunu yapabilirsiniz,

$categoryTitle = 'Men';
$collection = $this->_categoryCollectionFactory->create()->addAttributeToFilter('name',$categoryTitle)->setPageSize(1);

if ($collection->getSize()) {
    $categoryId = $collection->getFirstItem()->getId();
}
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.