浏览文章

文章信息

Magento2 怎样获取产品图片(兼容rest)|Magento2 how to get product image (include rest api) 12799

代码:

if (!@file_exists(BP . '/pub/media/catalog/product' . $product->getImage())) {
                $image_url = str_replace('webapi_rest/_view', 'frontend/'.$this->getTheme()->getThemePath(), $placeholder_thumbnail);
            } else {
                $image_url = $this->getStore()->getBaseUrl('media') . 'catalog/product' . $product->getImage();
            }


原创