How to get post data variables after submition a form in magento

前端 未结 5 1378
暖寄归人
暖寄归人 2021-01-31 20:39

How do I get data of post variables ? Like if I post form with post method then I can get itt with $_REQUEST or with $_POST. How I can do this in mgento ?

5条回答
  •  礼貌的吻别
    2021-01-31 21:10

    You can get all variables using $this->getRequest()->getParams();. This will return all variables. For any particular name like id you can use $this->getRequest()->getParam('id'); without the "s". Hope this will help.

提交回复
热议问题