Essaye ça:
<?php
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$product = $objectManager->get('Magento\Framework\Registry')->registry('current_product');//get current product
echo $product->getId();
echo $product->getName();
?>
OU
Ajoutez le code ci-dessous dans votre fichier de blocage.
par exemple app/code/AR/CustomModule/Block/CustomBlock.php
<?php
namespace AR\CustomModule\Block;
class CustomBlock extends \Magento\Framework\View\Element\Template
{
protected $_registry;
public function __construct(
\Magento\Backend\Block\Template\Context $context,
\Magento\Framework\Registry $registry,
array $data = []
)
{
$this->_registry = $registry;
parent::__construct($context, $data);
}
public function _prepareLayout()
{
return parent::_prepareLayout();
}
public function getCurrentCategory()
{
return $this->_registry->registry('current_category');
}
public function getCurrentProduct()
{
return $this->_registry->registry('current_product');
}
}
?>
Impression des données produit actuelles dans votre fichier modèle (custom.phtml)
if ($currentProduct = $block->getCurrentProduct()) {
echo $currentProduct->getName() . '<br />';
echo $currentProduct->getSku() . '<br />';
echo $currentProduct->getId() . '<br />';
}
Cela fonctionne pour moi.
.
la source
utilisez ce code pour obtenir l'identifiant actuel du produit
la source
Tu pourrais essayer
$product = $this->abstractProduct->getProduct();
avec
\Magento\Catalog\Block\Product\AbstractProduct $abstractProduct
travaillé pour moi :)
la source
Essaye ça:
la source