Risposte:
Utilizzare il codice seguente per ottenere l'URL dell'immagine view
<img src="<?php echo $this->getViewFileUrl('Vendor_Module::images/image.png'); ?>" />
AGGIORNARE:
<?php echo $block->getViewFileUrl('images/demo.jpg'); ?>
Per ottenere Image Path nel tuo Helper o Controller, devi usare
use Magento\Framework\View\Asset\Repository;
use Magento\Framework\App\RequestInterface; // for $this->request
nel tuo file.
Dopo aver aggiunto il repository e creato l'oggetto assetRepo
& request
, chiama il percorso dell'immagine con la funzione,
$params = array('_secure' => $this->request->isSecure());
$this->assetRepo->getUrlWithParams('Nitesh_Module::images/image.png', $params);
Fare riferimento alla vendor\magento\module-payment\Model\CcConfig.php::getViewFileUrl($fileId, array $params = [])
funzione
MODIFICARE
Per ottenere percorsi di immagine corretti per script di installazione, chiamate API e Cronjobs, sarà necessario aggiungere l'emulazione come di seguito per ottenere percorsi di immagine corretti.
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();
}
Riferimento: https://magento.stackexchange.com/a/297121/2443