W Magento 2 jak odbierać tablicę żądań? $_POST
a $_GET
także jak my w Magento 1:
Mage::app()->getRequest()->getPost()
W Magento 2 jak odbierać tablicę żądań? $_POST
a $_GET
także jak my w Magento 1:
Mage::app()->getRequest()->getPost()
Odpowiedzi:
Jeśli próbujesz tego z rozszerzonego kontrolera, Magento\Framework\App\Action\Action
możesz uzyskać żądanie za pomocą $this->getRequest()->getPost()
.
Jeśli jesteś w klasie niestandardowej, musisz wstrzyknąć żądanie do konstruktora.
<?php
namespace Namespace\Module\Something;
class ClassName
{
protected $request;
public function __construct(
\Magento\Framework\App\RequestInterface $request
....//rest of parameters here
) {
$this->request = $request;
...//rest of constructor here
}
public function getPost()
{
return $this->request->getPostValue();//in Magento 2.*
}
}
\Magento\Framework\App\Request\Http
nie ma metody getPost
, jesteś tego pewien?
Cześć, możesz łatwo uzyskać to w modelach, blokach i kontrolerach, używając:
$this->getRequest()->getPost()
Lub dodaj Magento\Framework\App\RequestInterface
do parametrów konstruktora we własnych klasach:
<?php
namespace MyModuleNameSpace\MyModule\Block
use Magento\Framework\App\RequestInterface;
class MyClass
{
/**
* Request instance
*
* @var \Magento\Framework\App\RequestInterface
*/
protected $request;
/**
* @param RequestInterface $request
*/
public function __construct(RequestInterface $request)
{
$this->request = $request;
}
public function getMyPostParams()
{
$postData = $this->request->getPost();
}
}
\Magento\Framework\App\RequestInterface
nie ma metody getPost()
, jesteś tego pewien?
$this->getRequest()->getPost();
zwraca Zend\Stdlib\Parameters
mi obiekt. Nawet w rdzeniu Magento używa wielu takich połączeń, z parametrem takim jak na przykład w Magento\Sales\Controller\Adminhtml\Order\AddComment
linii 31 jest wywołanie:$data = $this->getRequest()->getPost('history');
Magento\Catalog\Model\Product\Option\ReadHandler
klasę wtyczek tylko w interfejsie API szczegółów produktu?
To powinno działać, po prostu przetestuj. Porównaj i zobacz, czego brakuje.
<?php
namespace MyModuleNameSpace\MyModule\Block
use Magento\Framework\App\RequestInterface;
class MyClass extends \Magento\Framework\View\Element\Template
{
/**
* Request instance
*
* @var \Magento\Framework\App\RequestInterface
*/
protected $request;
/**
* @param RequestInterface $request
*/
public function __construct(
RequestInterface $request,
\Magento\Framework\View\Element\Template\Context $context,
array $data = [])
{
$this->request = $request;
parent::__construct($context, $data);
}
public function getMyPostParams()
{
$postData = $this->request->getPost();
}
}
$this->_request