テンプレートで製品の完全な画像URLを取得する


23

動的な製品を表示するための静的ブロックを作成しようとしています。これは、すべての子カテゴリを取得し、各カテゴリの各製品の画像を印刷することになっているコードです。

<?php
    $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
    $category = $objectManager->get('Magento\Framework\Registry')->registry('current_category');
    ?><ol><?php
    foreach ($category->getChildrenCategories() as $child_category) {
        ?><li>
            <ul><?php
                foreach ($child_category->getProductCollection() as $product) {
                    ?><li><img src="<?php echo $product->getImage();?>"/><li><?php
                }
            ?></ul>
        </li><?php
    }
    ?></ol>

img srcsが例として「/a/b/ab001.jpg」のみであり、フルパスではなく「/ pub / media / catalog / product / cache / 1 / small_image / 240x300 / abc123def456 / a / b / 001.jpg」のように画像が見つかりません。製品画像を取得する正しい方法は何ですか?


1
テンプレートでObject Managerを直接使用しないでください。新しいブロックを作成するか、既存の関数を再利用する必要があります。
コアTruongDinh 16年

回答:


28

ブロックが拡張する場合Magento\Catalog\Block\Product\AbstractProduct、次を使用できます。

$imageType = 'category_page_list'; // choose which image
$image = $block->getImage($product, $imageType);

次に、画像URLを取得します

$image->getImageUrl();

または、<img>要素として出力する場合:

echo $image->toHtml();

ブロックが抽象製品ブロックを拡張しない/拡張できない場合、getImage()独自にメソッドを作成できます。

public function getImage($product, $imageId)
{
    return $this->imageBuilder->setProduct($product)
        ->setImageId($imageId)
        ->create();
}

$this->imageBuilder として注入する必要があります Magento\Catalog\Block\Product\ImageBuilder


$imageType又は$imageId変数、例えば、テーマで定義されている画像の種類のいずれかであるべきですcategory_page_list

app/design/frontend/Magento/luma/etc/view.xmlたとえば、Lumaテーマのすべての画像タイプを参照してください。

Magento 2では、幅と高さをテンプレートで直接定義する代わりに、これらの画像タイプが使用されます。


私はあなたのコードをしようとしていますが、私はこのエラーを取得していますUncaught Magento\Framework\View\Asset\File\NotFoundException: Unable to resolve the source file for 'adminhtml/_view/en_US/Magento_Catalog/images/product/placeholder/.jpg'
ND17

@ ND17 2つの質問:1)管理領域でブロックを使用していますか?このコードはフロントエンドのみを対象としています2)プレースホルダーイメージを設定していますか?そうでなく、製品に画像がない場合は、常にエラーが発生します
ファビアンシュメングラー

1
@davideghzテーマで定義された画像タイプの1つcategory_page_list。参照:github.com/magento/magento2/blob/…Magento 2では、テンプレートで幅と高さを直接定義する代わりにこれらを使用します
ファビアンシュメングラー

3
割り当てられた画像の代わりにプレースホルダーを戻す理由は何ですか?
ローラ

2
私は@Lauraと同じ問題を抱えています。割り当てられた画像ではなく、常にプレースホルダー画像を返します(割り当てられた画像は、製品リストまたはその他の一般的な製品詳細ページに完全に表示されます)。
fritzmg

9

製品イメージのサイズを変更し、デフォルトのMagentoイメージキャッシュシステムを使用する必要があり、フロントエンドエリアにいない場合は、この回避策を使用できます。

ユースケース:外部アプリケーションのカスタムAPIでサイズ変更された画像URLが必要な場合に役立ちます。

機能コード:

/**
 * @var \Magento\Catalog\Model\ProductFactory
 */
protected $productFactory;

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

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

/**
 * Constructor.
 *
 * @param \Magento\Catalog\Model\ProductFactory $productFactory
 * @param \Magento\Store\Model\App\Emulation $appEmulation
 * @param \Magento\Catalog\Helper\ImageFactory $helperFactory
 * @param \Magento\Store\Model\StoreManagerInterface $storeManager
 */
public function __construct(
    \Magento\Catalog\Model\ProductFactory $productFactory,
    \Magento\Store\Model\App\Emulation $appEmulation,
    \Magento\Catalog\Helper\ImageFactory $helperFactory,
    \Magento\Store\Model\StoreManagerInterface $storeManager,
) {
    $this->productFactory                   = $productFactory;
    $this->imageBuilder                     = $imageBuilder;
    $this->helperFactory                    = $helperFactory;
    $this->appEmulation                     = $appEmulation;
    $this->storeManager                     = $storeManager;
}

/**
 * Retrieve product image
 *
 * @param \Magento\Catalog\Model\Product $product
 * @param string $imageId
 * @param array $attributes
 * @return \Magento\Catalog\Block\Product\Image
 */
public function getImage($product, $imageId, $attributes = [])
{
    $image = $this->helperFactory->create()->init($product, $imageId)
        ->constrainOnly(true)
        ->keepAspectRatio(true)
        ->keepTransparency(true)
        ->keepFrame(false)
        ->resize(200, 300);

    return $image;
}

public function customFunction()
{
    // some stuff here

    $storeId = $this->storeManager->getStore()->getId();

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

    $product = $this->productFactory->create()->loadByAttribute('sku', 'productSKU');
    $imageUrl = $this->getImage($product, 'product_base_image')->getUrl();

    echo $imageUrl;

    $this->appEmulation->stopEnvironmentEmulation();

    // some stuff here
}

出力例:

http://{domain}/media/catalog/product/cache/1/image/200x300/e9c3970ab036de70892d86c6d221abfe/s/r/{imageName}.jpg

コメント:

関数startEnvironmentEmulationの3番目のパラメーター、同じstoreIdをすでに使用している場合にフロントエンドエリアの使用を強制するために使用されます。(APIエリアに便利)

この回避策により、この種のエラーを回避できます。

http://XXXX.com/pub/static/webapi_rest/_view/en_US/Magento_Catalog/images/product/placeholder/.jpg

Uncaught Magento\Framework\View\Asset\File\NotFoundException: Unable to resolve the source file for 'adminhtml/_view/en_US/Magento_Catalog/images/product/placeh‌​older/.jpg'

1
環境エミュレーションのヒント、私が必要なものをありがとう。
-thaddeusmt

2
環境エミュレーションは私の時間を節約しました。どうもありがとう!
メディナ

APIの有用性のために+1
トニー

8

それを試してみてください

$store = $objectManager->get('Magento\Store\Model\StoreManagerInterface')->getStore();
$imageUrl = $store->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA) . 'catalog/product' . $product->getImage();

1
これは、現在の要求に応じて自動的にセキュア/非セキュアURLを提供するため、良いものです
Milan Simek

3

このコードを試してください。

$ProductImageUrl = $block->getUrl('pub/media/catalog').'product'.$_product->getImage();

Magento SEへようこそ。1行のコードのみを含む回答は、あまり役に立ちません。この場合、この行の使用方法は比較的明確getUrl()ですが、誤って機能する場合でも、使用することは正しい方法ではありません。$route「モジュール/コントローラー/アクション」という形式のパラメーターを取ります。「pub / media / catalog」はルートのように見えますが、そうではありません。
ファビアンシュメングラー16

オブジェクトマネージャを使用しないでください。良い答えです。1行だけでも。
LM_Fielding

@LM_Fieldingオブジェクトマネージャーを使用しないすべての回答が自動的に適切とは限りません。
ファビアンシュメングラー

このコードを試して、コメントを投稿してください
シーハスリアマン

1

たぶんMagento\Catalog\Helper\Product::getImageUrl()助けることができます。イメージヘルパーMagento\Catalog\Helper\ImagegetUrlメソッドが期待するものを返さないため、Magento開発者がクラスに実装しなかった理由がわかりません...


1

このコードを試してください:

$prdId = 35;
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$hotPrd = $objectManager->get('Magento\Catalog\Model\Product')->load($prdId);
$store = $objectManager->get('Magento\Store\Model\StoreManagerInterface')->getStore();
echo $store->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA) . 'catalog/product' . $hotPrd->getThumbnail();

1

ObjectManagerまたはBlockを使用できます。

Objectmanager:

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$store = $objectManager->get('Magento\Store\Model\StoreManagerInterface')->getStore();
$imageUrl = $store->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA) . 'catalog/product' . $product->getImage();

ブロック:

protected $_storeManagerInterface;

public function __construct(
  ...
  \Magento\Store\Model\StoreManagerInterface $storeManagerInterface,
  ...
)
{
  ...
  $this->_storeManagerInterface = $storeManagerInterface;
  ...
}

...

public function getStoreInterface($imgUrl){
   $store = $this->_storeManagerInterface->getStore();
   $storeMedia = $store->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA) . 'catalog/product' . $imgUrl;
   return $storeMedia;
}
...

関数を呼び出します:

<img src="<?php echo $block->getStoreInterface($imgUrl) ?>"/>

0

このコードを試してください

<img class="test-image" alt="image" src="<?php echo $block->getUrl('pub/media/catalog/product', ['_secure' => $block->getRequest()->isSecure()]).$product->getImage();?>" />

これがあなたを助けることを願っています


これは「のSRC追加されdomain.com/pub/media/catalog//a/b/ab001.jpgも見つけることができない」
アレックス・

製品ディレクトリがありません。
LM_Fielding

0

モジュール内:

public function getProducts()
{
    //... create collection code goes here...

    $result = [ ];

    foreach ( $collection as $product ) {
        $result[] = [
            'id'        => $product->getId(),
            '_sku'      => $product->getSku(),
            'permalink' => $product->getProductUrl($product),
            'title'     => $product->getName(),
            'raw_price' => $product->getPrice(),
            'image_url' => $this->getUrl().'pub/media/catalog/product'.$product->getImage()
        ];
    }

    return $result;
}

次に、ブロックで次の結果を取得します。

print_r($block->getProducts());

まあ、それは完璧ではありませんが、私にとってはうまくいきます。

結果を見てください: ここに画像の説明を入力してください


0

あなたのクラスでは、StoreManagerInterfaceのような依存関係を注入します:

use \Magento\Framework\View\Element\Template\Context;
use \Magento\Store\Model\StoreManagerInterface;

public function __construct(Context $context, StoreManagerInterfac $storeManager)
    {
        parent::__construct($context);
        $this->_storeManager = $storeManager;

    }

あなたの方法の後、例えばサムネイルを取得するために

public function getProductThumbnail(){

        return $this->_storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA) . 'catalog/product' . $product->getImage();
    }

0

コードの下でこれを試すことができます。

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$category = $objectManager->get('Magento\Framework\Registry')->registry('current_category');
$childcategories = $category->getChildrenCategories();

foreach($childcategories as $child)
    {
echo '<li class="sub-cat">';
        $cat = $objectManager->create('Magento\Catalog\Model\Category')->load($child->getId()); 
        ?>
        <a href="<?php echo $cat->getUrl(); ?>">
        <div class="sub-title">
            <h3><?php echo $cat->getName();?></h3>
        </div> 
    <?php
        if ($_imgUrl = $cat->getImageUrl())
        {
            $_imgHtml = '<div class="category-image"><img src="' . $_imgUrl . '" alt="' . $block->escapeHtml($cat->getName()) . '" title="' . $block->escapeHtml($cat->getName()) . '" class="image" /></div>';
            $_imgHtml = $_helper->categoryAttribute($cat, $_imgHtml, 'image');
            /* @escapeNotVerified */ echo $_imgHtml;
        }  

    ?>      
    <?php echo '</a></li>'; }
    echo '</ul>';
}

0

これは別の作業方法です。

/** @var \Magento\Framework\UrlInterface $urlManager */
$url = $urlManager->getDirectUrl('pub/media/catalog/product' . $product->getImage());

または、現在のリクエストに基づいてセキュア/非セキュアURLを尊重する:

/** @var \Magento\Framework\UrlInterface $urlManager */
/** @var \Magento\Framework\App\RequestInterface $request */
$url = $urlManager->getDirectUrl(
    'pub/media/catalog/product' . $product->getImage(),
    ['_secure' => $request->isSecure()]
);

オブジェクトのインスタンス化はあなた自身の想像力に任せます。


0

phtmlファイルでベース画像のURLを取得できます

$_objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$imageHelper  = $_objectManager->get('\Magento\Catalog\Helper\Image');
<?php $image_url = $imageHelper->init($product, 'product_base_image')->setImageFile($product->getFile())->resize($imagewidth, $imageheight)->getUrl(); ?>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.