Magento 2: remplacer Magento \ Catalog \ Block \ Product \ View Block

8

J'ai développé un module personnalisé et j'ai essayé de remplacer le bloc d'affichage du produit en suivant ces deux liens Overriding Block dans Magento 2 et DI & Extending a Block sur Magento 2, mais lorsque je clique sur la page d'affichage du produit, cela me donne la page 404. ce que j'ai fait jusqu'à présent est ci-dessous

di.xml

  <?xml version="1.0"?>
   <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd">
       <preference for="Magento\Catalog\Block\Product\View" type="TT\Helloworld\Block\Myproduct"/>
   </config>

Myproduct.php

<?php
namespace TT\Helloworld\Block;

use Magento\Framework\View\Element\Template;
use Magento\Catalog\Api\ProductRepositoryInterface;
use Magento\Catalog\Model\Product;
class Myproduct extends \Magento\Catalog\Block\Product\View
{

protected $_helper;

protected $_objectManager;

public function __construct(
        \Magento\Catalog\Block\Product\Context $context,
        \Magento\Framework\Url\EncoderInterface $urlEncoder,
        \Magento\Framework\Json\EncoderInterface $jsonEncoder,
        \Magento\Framework\Stdlib\StringUtils $string,
        \Magento\Catalog\Helper\Product $productHelper,
        \Magento\Catalog\Model\ProductTypes\ConfigInterface $productTypeConfig,
        \Magento\Framework\Locale\FormatInterface $localeFormat,
        \Magento\Customer\Model\Session $customerSession,
        ProductRepositoryInterface $productRepository,
        \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency,
        array $data = [],
        \TT\Helloworld\Helper\Data $helper  
) {
    parent::__construct($context, $urlEncoder, $jsonEncoder, $string, $productHelper, $productTypeConfig, $localeFormat, $customerSession, $productRepository, $priceCurrency, $data,$helper);

    $this->_helper = $helper;

}

protected function _toHtml()
{
    $this->setModuleName($this->extractModuleName('Magento\Catalog\Block\Product\View'));
    return parent::_toHtml();
}

Selon DI et l'extension d'un bloc sur le lien Magento 2 , j'ai également inclus tous les paramètres de construction de la classe parent dans le constructeur Myproduct.php.

quelqu'un sait-on où je me trompe? ou quelle est la bonne façon de contourner cela?

chirag dodia
la source
vous trouverez votre solution suivez le lien. magento.stackexchange.com/questions/86497/…
Anand Ontigeri
@AnandOntigeri cette solution ne fonctionne pas non plus pouvez-vous ajouter une solution ici?
chirag dodia du
TT\Helloworld\Block\Myproduct.php==> TT\Helloworld\Block\Myproduct(supprimer .php)
bchatard
@ BriceC.that ne fonctionne pas non plus
chirag dodia
1
supprimez C:\xampp\htdocs\Magento2\var\generation\TT\Helloworld\Block\Myproduct\Intercepto‌​r.phpet commentez la __constructméthode et réessayez s'il vous plaît
bchatard

Réponses:

5

Pour reprendre

  • __constructméthode de commentaire (solution temporaire)
  • suppression Interceptorgénérée (une nouvelle sera générée - doit être supprimée après chaque modification de __constructméthode)
  • dans votre utilisation de la mise en page template="TT_Helloworld::myproduct.phtml"
bchatard
la source
Je ne comprends pas quelle est la raison de la suppression de la méthode __construct de ma classe?
chirag dodia
c'était pour le débogage, vous pouvez maintenant essayer de décommenter la méthode.
bchatard
2

vous devez entrer \ TT \ Helloworld \ Helper \ Data $ helper avant le tableau $ data = [] dans le __contruct

public function __construct(
    \Magento\Catalog\Block\Product\Context $context,
    \Magento\Framework\Url\EncoderInterface $urlEncoder,
    \Magento\Framework\Json\EncoderInterface $jsonEncoder,
    \Magento\Framework\Stdlib\StringUtils $string,
    \Magento\Catalog\Helper\Product $productHelper,
    \Magento\Catalog\Model\ProductTypes\ConfigInterface $productTypeConfig,
    \Magento\Framework\Locale\FormatInterface $localeFormat,
    \Magento\Customer\Model\Session $customerSession,
    ProductRepositoryInterface $productRepository,
    \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency,
    \TT\Helloworld\Helper\Data $helper ,
    array $data = []
) {
    parent::__construct($context, $urlEncoder, $jsonEncoder, $string, $productHelper, $productTypeConfig, $localeFormat, $customerSession, $productRepository, $priceCurrency, $data,$helper);
santhoshnsscoe
la source