Magento 2カテゴリタイトルを使用してカテゴリIDを取得する


11

この種の関数を使用して、カテゴリタイトルのみを使用してカテゴリIDを取得したいと思います。

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

使用例:タイトルでカテゴリIDを取得し、IDデータを移行スクリプトの配列に配置します。

回答:


18

あなたはコレクションを介してそれを行うことができます:

まずCategoryFactory、クラスコンストラクターにを挿入する必要があります。

Magento 2.0および2.1:

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

次に、クラスの他のどこでも行うことができます:

$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(...);
}

次に、クラスの他のどこでも行うことができます:

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

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

エラーが発生しましたPHPの致命的なエラー:未定義のメソッドMagento \ Catalog \ Model \ CategoryFactory :: getCollection()への
呼び出し

1
@kilisは私の更新を参照してください。そのクラスを挿入するにはDIを使用する必要があります;)
デジタルピアニズムのラファエル

私のユースケースでは、この種の関数が必要です$ collection = $ this-> _ objectManager-> create( '\ Magento \ Catalog \ Model \ CategoryFactory')-> getCollection()-> addAttributeToFilter( 'title'、$ categoryTitle)- > setPageSize(1);
キリス

1
@kilisまあ、オブジェクトマネージャーを直接使用するのは悪い習慣です。依存性注入を常に使用する必要があります
デジタルピアニズムのラファエル

そうだね。私たちのプロジェクトアップグレードスクリプトは次のように設計されています:/
kilis

4

これは、ベストプラクティスと見なされているサービスコントラクトを使用して実行できます。

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ベストプラクティスのパート
Akif、

3

あなたはname

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

FEではなく、アップグレードスクリプト機能が必要です。
キリス

タイトルを言っただけで、答えを更新しました。
Rakesh Jesadiya、2016年

2

Phtmlファイルの以下のコードを試してください:

$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

コラージュの助けを借りて手に入れました

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

:)コレクションは必要なレコードのみを返すため->getFirstItem()、上記のコードで唯一の結果を取得できます


0

機能しているスクリプトでそれをリファクタリングするには、以下を使用することをお勧めします

$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();
}

編集: スクリプトを作成してテストしました。/scripts/file.phpにファイルを作成しました

<?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; 
}

コードを試してみましたが、最初の行を$ obj = $ this-> _ objectManager;に変更しました [Magento \ Framework \ Exception \ LocalizedException] Invalid attribute name:title error
kilis

そのエラーが発生したとき、あなたは私のスクリプトを使用しませんでした。
Kay Int Veen

完全にテストされたスクリプトを追加しました。確認してください。それは確かに動作します!
Kay Int Veen

0

私は自分の(より効率的な)メソッドをなんとか書くことができました。

$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;
}

このコードは、すべてのtitle:idを配列にキャッシュし、2回だけクエリします。

私のために働いた。使いやすい!


0

まず、コレクションファクトリクラスを注入する必要があります

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

その後、メソッド内でこれを行うことができます。

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

if ($collection->getSize()) {
    $categoryId = $collection->getFirstItem()->getId();
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.