3

我目前正在开发一个应该处理发布请求的 Magento 控制器。

我可以检查请求是否为 POST 并提取参数,但我想知道是否有标准方法来检查请求期间是否传递了特定参数。

你会怎么做?

4

1 回答 1

8
$email = $this->getRequest()->getPost('email');

或者

$email = isset($_POST['email']) ? $_POST['email'] : null;

一样。

于 2013-06-15T19:44:22.413 回答