Magento 2'de bir phtml dosyasında medya dizin yolu nasıl alınır?


14

Ortam dizini yolunu almak için aşağıdaki yöntemi kullanın , ancak bir hata döndürür.

$om = \Magento\Core\Model\ObjectManager::getInstance();

$directoryList = $om->get(\Magento\App\Filesystem\DirectoryList::class);

$pubMediaDir = $directoryList->getPath(\Magento\App\Filesystem\DirectoryList::MEDIA);

Lütfen bir çözüm bulmama yardım et.


1
Sorunuz bana açık değil. Daha fazla ayrıntı açıklayabilir misiniz? Ayrıca, bir göz atabiliriz
Khoa TruongDinh

Yanıtlar:


24

Doğrudan object managerkullanmak yerine,

use Magento\Framework\App\Filesystem\DirectoryList;

protected $_filesystem;

public function __construct(
    \Magento\Framework\Filesystem $filesystem
)
{
    $this->_filesystem = $filesystem;
}

Artık medya yolunu,

$mediapath = $this->_filesystem->getDirectoryRead(DirectoryList::MEDIA)->getAbsolutePath();

DÜZENLE

Bir Nesne Yöneticisi kullanmak istiyorsanız, bunu kullanabilirsiniz (önerilmez)

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();

$fileSystem = $objectManager->create('\Magento\Framework\Filesystem');
$mediaPath = $fileSystem->getDirectoryRead(\Magento\Framework\App\Filesystem\DirectoryList::MEDIA)->getAbsolutePath();
echo $mediaPath;
exit;

"Yakalanmayan TypeError: \ argümanı \ Module \ Controller \ Index \ Upload :: __ construct () ad alanına iletilen bağımsız değişken 2, Magento \ Framework \ Dosya Sistemi örneği olmalı, hiçbiri verilmiyor"
Rita Jose

evet,
di'yi

di: derleme tamamlandı, ancak yine hata veriyor :( "Kurtarılabilir Hata: Magento \ Framework \ Filesystem \ Directory \ Read sınıfının nesnesi / opt / lampp / htdocs / magento214 / app / code / namespace içindeki dizeye dönüştürülemedi /Customtab/Controller/Index/Upload.php on line 18 "
Rita Jose

benim düzenleme görmek, doğrudan nesne yöneticisi kullanmak istiyorsanız @RitaJose
Keyur Shah

wow: D. .. Çok teşekkürler .. Düzenlenmiş olan iyi çalışıyor :)
Rita Jose

7

İlk önce Magento 2 yapıcısına DirectoryList sınıfını enjekte etmeniz gerekir:

public function __construct(\Magento\Framework\View\Element\Template\Context $context, \Magento\Framework\App\Filesystem\DirectoryList $directory_list, array $data = []) {
     parent::__construct($context, $data);
     $this->directory_list = $directory_list;  
 }

Bundan sonra çeşitli yolları almak için DirectoryList yöntemlerine erişebileceksiniz. Örneğin, medya klasörünü almak için şunları kullanabilirsiniz:

$this->directory_list->getPath('media');

Diğer olası kullanımlar:

/* Get app folder */
$this->directory_list->getPath('app');

/* Get configuration folder */
$this->directory_list->getPath('etc');

/* Get libraries or third-party components folder */
$this->directory_list->getPath('lib_internal');

/* Get libraries/components that need to be accessible publicly through web-server folder */
$this->directory_list->getPath('lib_web');

/* Get public folder */
$this->directory_list->getPath('pub');

/* Get static folder */
$this->directory_list->getPath('static');

/* Get var folder */
$this->directory_list->getPath('var');

/* Get temporary files folder */
$this->directory_list->getPath('tmp');

/* Get file system caching directory (if file system caching is used) */
$this->directory_list->getPath('cache');

/* Get logs of system messages and errors */
$this->directory_list->getPath('log');

/* Get file system session directory (if file system session storage is used) */
$this->directory_list->getPath('session');

/* Get directory for Setup application*/
$this->directory_list->getPath('setup');

/* Get Dependency injection related file directory */
$this->directory_list->getPath('di');

/* Relative directory key for generated code*/
$this->directory_list->getPath('generation');

/* Temporary directory for uploading files by end-user */
$this->directory_list->getPath('upload');

/* Directory to store composer related files (config, cache etc.) in case if composer runs by Magento Application */
$this->directory_list->getPath('composer_home');

/* A suffix for temporary materialization directory where pre-processed files will be written (if necessary) */
$this->directory_list->getPath('view_preprocessed');

/* Get template minification dir */
$this->directory_list->getPath('html');

medya tarayıcı url döndürür ... ben medya klasör yoluna ihtiyacım var
Rita Jose

Lütfen güncellenmiş cevabıma bakın.
Mohit Kumar Arora

çalışmaz.
Sarfaraj Sipai

Teşekkürler @MohitKumarArora - günümü kurtardım. yukarıdaki çözüm cazibe gibi çalıştı
Abid Malik

6

Ortam yolunu .phtml dosyasında almak için aşağıdaki kodu kullanın.

$this->getUrl('pub/media');

Objectmanager tarafından

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
echo $objectManager->get('Magento\Store\Model\StoreManagerInterface')
                    ->getStore()
                    ->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA);

3
Tarayıcı url yolunu döndürür .. Medyanın klasör yoluna ihtiyacım var
Rita Jose

6

StoreManagerInterface kullanarak almaya çalışın

use Magento\Store\Model\StoreManagerInterface;
protected $storeManager;

public function __construct(
    StoreManagerInterface $storeManager,
)
{
    $this->storeManager = $storeManager;
}

Şimdi kullanarak medya URL'sini alın

 $mediaUrl = $this->storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA);

çalışmıyor .....
Sarfaraj Sipai
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.