Magento2 dosyası indirme işlemi


Yanıtlar:


19

\Magento\Backend\App\Actionarka uç veya \Magento\Framework\App\Action\Actionön uç için genişleterek denetleyici eyleminizi oluşturabilirsiniz .
ve şöyle görünmesini sağlayın:

<?php 
namespace Your\Namespace\Here;

class ClassName extends \Magento\Backend\App\Action 
{
    public function __construct(
        \Magento\Framework\Controller\Result\RawFactory $resultRawFactory,
        \Magento\Framework\App\Response\Http\FileFactory $fileFactory,
        \Magento\Backend\App\Action\Context $context
    ) {
        $this->resultRawFactory      = $resultRawFactory;
        $this->fileFactory           = $fileFactory;
        parent::__construct($context);
    }
    public function execute()
    {
        //do your custom stuff here
        $fileName = 'file name for download here';
        $this->fileFactory->create(
            $fileName,
            null, //content here. it can be null and set later 
            base dir of the file to download here
            'application/octet-stream', //content type here
            content lenght here...can be null
        );
        $resultRaw = $this->resultRawFactory->create();
        $resultRaw->setContents(contents of file here); //set content for download file here
        return $resultRaw;
    }
}

Null içerik geçmek nasıl, ben tanımlamak onun tür ve işlev hatası yukarıdaki yöntemi kullanarak veri dizisi var.
Rakesh Jesadiya

3
$this->fileFactory->create()Bu zaten bir yanıt uygulaması olduğu için doğrudan sonucu döndürebilirsiniz, gerek yok$resultRaw
Fabian Schmengler

@fschmengler muhtemelen haklısınız, ancak bu örneği yedek indirme işleminden çekirdekten aldım.
Marius

1
Çoğu M2 çekirdek modülü kötü bir örnektir;)
Fabian Schmengler

Evet evet tartışmayı biliyorum. Aslında bir kısmına başladığımı düşünüyorum. Ama bu her zaman doğru değildir
Marius

8

Ayrıca, indirmek istediğiniz bir dosya için bir yol sağlayabilir:

//Send file for download
//@see Magento\Framework\App\Response\Http\FileFactory::create()
return $this->_fileFactory->create(
    //File name you would like to download it by
    $filename,
    [
        'type'  => "filename", //type has to be "filename"
        'value' => "folder/{$filename}", // path will append to the
                                         // base dir
        'rm'    => true, // add this only if you would like the file to be
                         // deleted after being downloaded from server
    ],
    \Magento\Framework\App\Filesystem\DirectoryList::MEDIA
);

2

Marius'un verdiği cevaba dayanarak.

class Download extends \Magento\Framework\App\Action\Action
{
    protected $resultRawFactory;
    protected $fileFactory;

    public function __construct(
        \Magento\Framework\Controller\Result\RawFactory $resultRawFactory,
        \Magento\Framework\App\Response\Http\FileFactory $fileFactory,
        \Magento\Backend\App\Action\Context $context
    ) {
        $this->resultRawFactory      = $resultRawFactory;
        $this->fileFactory           = $fileFactory;
        parent::__construct($context);
    }
    public function execute()
    {
        try{
            $fileName = 'FileName'; // the name of the downloaded resource
            $this->fileFactory->create(
                $fileName,
                [
                    'type' => 'filename',
                    'value' => 'relative/path/to/file/from/basedir'
                ],
                DirectoryList::MEDIA , //basedir
                'application/octet-stream',
                '' // content length will be dynamically calculated
            );
        }catch (\Exception $exception){
            // Add your own failure logic here
            var_dump($exception->getMessage());
            exit;
        }
        $resultRaw = $this->resultRawFactory->create();
        return $resultRaw;
    }
}

Doğru izinlere sahip olmamak (burada bir okumaya ihtiyaç duyulmasına rağmen, Magento yazma izinlerini kontrol eder) garip bir hataya neden olur. "Site kapatıldı veya taşındı" veya böyle bir şey.

$ FileFactory-> create () içindeki mantıkta gizlice zirveye çıkmaya değer.

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.