製品タイプを取得する方法は?


12

Magento 2で新しいモジュールを作成しています。製品情報をphtmlファイルで取得しようとしています。私は正常に取得していENTITY_IDおよび製品名の情報を。しかし、製品タイプの情報を取得すると、エラーが発生します。次のコードを使用しました。

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$product = $objectManager->get('Magento\Framework\Registry')->registry('current_product'); //get current product

echo $product->getId() . '<br/>';
echo $product->getName() . '<br/>';
echo $product->getProductType() . '<br/>'; //getting wrong product type

回答:



0

これを試して :

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$product = $objectManager->get('Magento\Framework\Registry')->registry('current_product'); //get current product

$product->getTypeId() // it will return the product type
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.