getPostValue()
で書かれています
lib\internal\Magento\Framework\HTTP\PhpEnvironment\Request.php
/**
* Retrieve POST parameters
*
* @param string $name
* @param mixed $default
* @return mixed|ParametersInterface
*/
public function getPostValue($name = null, $default = null)
{
$post = $this->getPost($name, $default);
if ($post instanceof ParametersInterface) {
return $post->toArray();
}
return $post;
}
それからgetPost
値を取得します
vendor\zendframework\zend-http\src\Request.php
public function getPost($name = null, $default = null)
{
if ($this->postParams === null) {
$this->postParams = new Parameters();
}
if ($name === null) {
return $this->postParams;
}
return $this->postParams->get($name, $default);
}
あなたが少なくともいくつかのヒントを得ることを願っています。
そしてはい、あなたは使うことができます
$post = $this->getRequest()->getPostValue();
post
値を取得するには、Contact
モジュールをチェックしてヒントを取得することもできます