Jak uzyskać obraz produktu i adres URL w Magento 2?


16

Oto mój obserwator:

public function execute(\Magento\Framework\Event\Observer $observer)
{
    $orderIds = $observer->getEvent()->getOrderIds();
    $order = $this->_orderRepositoryInterface->get($orderIds[0]);
    $items =$order->getAllVisibleItems();
    $productQuantity = array();
    $productPrice = array();
    $productName = array();
    $productIds = array();
    foreach($items as $item) {
        $productIds[]= $item->getProductId();
        $productName[]= $item->getSku(); 
        $productPrice[] = $item->getPrice();
        $productQuantity[]= floor($item->getQtyOrdered());
    }
}

Jak mogę uzyskać obraz produktu i adres URL produktu z produktu?


Które wydarzenie złapałeś?
Khoa TruongDinh,

checkout_onepage_controller_success
współdziałanie

Odpowiedzi:


23

Ten sposób może nie być najlepszym sposobem na uzyskanie obrazu produktu.

Wstaw \Magento\Catalog\Api\ProductRepositoryInterfaceFactorydo naszego konstruktora.

protected $_productRepositoryFactory;

public function __construct(
        \Magento\Catalog\Api\ProductRepositoryInterfaceFactory $productRepositoryFactory
) {

    $this->_productRepositoryFactory = $productRepositoryFactory;
}

Możemy uzyskać obraz:

$product = $this->_productRepositoryFactory->create()->getById($item->getProductId());
$product->getData('image');
$product->getData('thumbnail');
$product->getData('small_image');

Twoja odpowiedź jest w porządku, ale co shoild zrobić, jeśli masz więcej niż jeden produkt w koszyku jak mogę pokazać więcej niż jeden produkt obraz
Ramkishan Suthar

ok mam to @khoa. jeśli mam więcej niż jeden obraz produktu. dzięki bardzo
Ramkishan Suthar

To nie działa. Zwracana wartość to taki ciąg znaków jak ten "/w/s/wsh10-orange_main.jpg"
Hoang Trinh

2
@piavgh to ścieżka do obrazu:pub/media/catalog/product
Khoa TruongDinh

1
więc jak użyć /w/s/wsh10-orange_main.jpg w atrybucie <img src = "" />, aby móc załadować rzeczywisty obraz
Lachezar Raychev

18

Jeśli chcesz opublikowanego / pamięci podręcznej adresu URL obrazu dla określonego widoku sklepu (tak jak ja), to działa dla mnie:

/**
 * @var \Magento\Store\Model\App\Emulation
 */
protected $appEmulation;

/**
 * @var \Magento\Store\Model\StoreManagerInterface
 */
protected $storeManager;

/**
 * @var \Magento\Catalog\Api\ProductRepositoryInterfaceFactory
 */
protected $productRepositoryFactory;

/**
 * @var \Magento\Catalog\Helper\ImageFactory
 */
protected $imageHelperFactory;

/**
 * @param \Magento\Store\Model\StoreManagerInterface $storeManager
 * @param \Magento\Store\Model\App\Emulation $appEmulation
 * @param \Magento\Catalog\Api\ProductRepositoryInterfaceFactory $productRepositoryFactory
 * @param \Magento\Catalog\Helper\ImageFactory $helperFactory
 */
public function __construct(
    \Magento\Store\Model\StoreManagerInterface $storeManager,
    \Magento\Store\Model\App\Emulation $appEmulation,
    \Magento\Catalog\Api\ProductRepositoryInterfaceFactory $productRepositoryFactory,
    \Magento\Catalog\Helper\ImageFactory $imageHelperFactory
)
{
    $this->storeManager = $storeManager;
    $this->appEmulation = $appEmulation;
    $this->productRepositoryFactory = $productRepositoryFactory;
    $this->imageHelperFactory = $imageHelperFactory;
}

Następnie, gdziekolwiek potrzebujesz uzyskać adres URL frontonu obrazu:

$sku = "my-sku";
// get the store ID from somewhere (maybe a specific store?)
$storeId = $this->storeManager->getStore()->getId();
// emulate the frontend environment
$this->appEmulation->startEnvironmentEmulation($storeId, \Magento\Framework\App\Area::AREA_FRONTEND, true);
// load the product however you want
$product = $this->productRepositoryFactory->create()->get($sku);
// now the image helper will get the correct URL with the frontend environment emulated
$imageUrl = $this->imageHelperFactory->create()
  ->init($product, 'product_thumbnail_image')->getUrl();
// end emulation
$this->appEmulation->stopEnvironmentEmulation();

Możesz wybrać inne typy obrazów oprócz product_thumbnail_image: sprawdź magento/theme-frontend-luma/etc/view.xmllistę dostępnych zdjęć produktów lub utwórz własne w view.xmlpliku.


1
WTF? to jest po prostu chore: D
Lachezar Raychev

Właśnie wypróbowałem to rozwiązanie i nie otrzymuję żadnych błędów, chociaż zwracany adres URL nie istnieje, a łańcuch jest pusty. Próbowałem z „product_base_image”, „product_small_image” i „product_thumbnail_image”, z których żaden nie działa. Czy możesz mi doradzić? Czy istnieje skuteczny sposób na wykonanie tego przy użyciu repozytorium produktów? Ponieważ już ładuję to gdzie indziej w moim bloku.
Powódź Jozuego

11

Jeśli musisz zwrócić adres URL produktu, powinien on wyglądać następująco:

//todo get product object $product 

$objectManager =\Magento\Framework\App\ObjectManager::getInstance();
$helperImport = $objectManager->get('\Magento\Catalog\Helper\Image');

$imageUrl = $helperImport->init($product, 'product_page_image_small')
                ->setImageFile($product->getSmallImage()) // image,small_image,thumbnail
                ->resize(380)
                ->getUrl();
echo $imageUrl;

6

Tak właśnie zrobiłem. jest dość wydajny i czysty:

1) Najpierw musisz wstrzyknąć następujące klasy:

protected $_storeManager;
protected $_appEmulation;
protected $_blockFactory;

public function __construct(
    ...
    \Magento\Store\Model\StoreManagerInterface $storeManager,
    \Magento\Framework\View\Element\BlockFactory $blockFactory,
    \Magento\Store\Model\App\Emulation $appEmulation)
{
    $this->_storeManager = $storeManager;
    $this->_blockFactory = $blockFactory;
    $this->_appEmulation = $appEmulation;
}

2) Następnie utwórz metodę getImageUrl z poniższym kodem:

protected function getImageUrl($product, string $imageType = '')
{
    $storeId = $this->_storeManager->getStore()->getId();

    $this->_appEmulation->startEnvironmentEmulation($storeId, \Magento\Framework\App\Area::AREA_FRONTEND, true);

    $imageBlock =  $this->_blockFactory->createBlock('Magento\Catalog\Block\Product\ListProduct');
    $productImage = $imageBlock->getImage($product, $imageType);
    $imageUrl = $productImage->getImageUrl();

    $this->_appEmulation->stopEnvironmentEmulation();

    return $imageUrl;
}

Uwaga: Kod „appEmulation” jest konieczny tylko podczas wykonywania tego połączenia od administratora lub interfejsu API . W przeciwnym razie pojawi się błąd poniżej (lub podobny):

Unable to resolve the source file for 'webapi_rest/_view/en_AU/Magento_Catalog/images/product/placeholder/.jpg'

3) Wywołaj getImageUrl przekazując obiekt produktu i żądany typ obrazu (na podstawie pliku view.xml )

...
$smallImage = $this->getImageUrl($productObject, 'product_page_image_small');
...

1

Aby uzyskać niestandardowy adres URL obrazu, użyłem tego kodu. Więc jeśli obraz nie wychodzi, załaduje domyślny obraz motywu.

$product = $block->getProduct();

$productImageAttr = $product->getCustomAttribute('product_banner_image');

if ($productImageAttr && $productImageAttr->getValue() != 'no_selection') {

    $productImage = $this->helper('Magento\Catalog\Helper\Image')
    ->init($product, 'product_banner_image')
    ->setImageFile($productImageAttr->getValue());

    $imageUrl = $productImage->getUrl();

} else {

    $imageUrl = $this->getViewFileUrl('images/cat-img1.jpg'); // Theme/web/images

}
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.