回答:
拡張するコントローラからこれを試してみる場合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