本文介绍了在我的Magento自定义模块的Controller中接收HTTP POST的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在学习开发模块magento。我正在开发一个付款模块,它应该收到一个帖子(在关闭申请之后)来更改请求的状态并生成发票。

I'm learning to develop modules magento. I'm developing a payment module and it should receive a post (after closing the application) to change the status of the request and generate the invoice.

但我不是知道如何使用我的HTTP POST控制器。我将在上发帖。

But I do not know how to get on my HTTP POST controller. I will make a post at http://mymagento.com/mymodule/receive.

class MyCompanyName_MyModule_StandardController extends Mage_Core_Controller_Front_Action{

    public function receiveAction() {
        //How receive my POST HERE??
    }

    // ...

}

感谢您的帮助

推荐答案

参见:

$this->getRequest()->getPost();
// or
$this->getRequest()->getPost('param');

这篇关于在我的Magento自定义模块的Controller中接收HTTP POST的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 02:57