Odpowiedzi:
Użyj poniższego kodu, aby uzyskać adres URL obrazu view
<img src="<?php echo $this->getViewFileUrl('Vendor_Module::images/image.png'); ?>" />
AKTUALIZACJA:
<?php echo $block->getViewFileUrl('images/demo.jpg'); ?>
Aby uzyskać ścieżkę obrazu w pomocniku lub kontrolerze, musisz użyć
use Magento\Framework\View\Asset\Repository;
use Magento\Framework\App\RequestInterface; // for $this->request
w twoim pliku.
Po dodaniu repozytorium i utworzeniu obiektu assetRepo
& request
wywołaj ścieżkę obrazu z funkcją,
$params = array('_secure' => $this->request->isSecure());
$this->assetRepo->getUrlWithParams('Nitesh_Module::images/image.png', $params);
Patrz vendor\magento\module-payment\Model\CcConfig.php::getViewFileUrl($fileId, array $params = [])
funkcja
EDYTOWAĆ
Aby uzyskać poprawne ścieżki obrazów dla skryptów instalacyjnych, wywołań API i Cronjobs, będziesz musiał dodać emulację jak poniżej, aby uzyskać prawidłowe ścieżki obrazu.
public function __construct(
\Magento\Framework\View\Asset\Repository $assetRepo,
\Magento\Framework\App\RequestInterface $request,
\Magento\Store\Model\App\Emulation $appEmulation
)
{
$this->assetRepo = $assetRepo;
$this->request = $request;
$this->appEmulation = $appEmulation;
}
public FunctionName($param){
$this->appEmulation->startEnvironmentEmulation($storeId, \Magento\Framework\App\Area::AREA_FRONTEND, true);
$params = array('_secure' => $this->request->isSecure());
$this->assetRepo->getUrlWithParams('Nitesh_Module::images/image.png', $params);
$this->appEmulation->stopEnvironmentEmulation();
}
Odniesienie: https://magento.stackexchange.com/a/297121/2443