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
模块以获取一些提示