Відповіді:
Якщо ви намагаєтесь це з контролером, який розширюється, Magento\Framework\App\Action\Action
ви можете отримати запит $this->getRequest()->getPost()
.
Якщо ви перебуваєте в користувацькому класі, вам потрібно ввести запит у конструктор.
<?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
немає методу getPost
, ви впевнені в цьому?
Привіт, ви можете легко отримати його в моделях, блоках та контролерах, використовуючи:
$this->getRequest()->getPost()
Або додайте Magento\Framework\App\RequestInterface
до параметрів конструктора у своїх власних класах:
<?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
немає методу getPost()
, ви впевнені в цьому?
$this->getRequest()->getPost();
повертає Zend\Stdlib\Parameters
об'єкт для мене. Навіть в основному, Magento використовує безліч подібних дзвінків, з таким параметром, як, наприклад, Magento\Sales\Controller\Adminhtml\Order\AddComment
є на лінії 31 дзвінок:$data = $this->getRequest()->getPost('history');
Magento\Catalog\Model\Product\Option\ReadHandler
до класу плагінів, щоб отримати лише API інформації про продукт?
Це має спрацювати, просто перевірити. Порівняйте і подивіться, чого не вистачає.
<?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