我正在学习开发模块 magento。我正在开发一个支付模块,它应该会收到一个帖子(在关闭应用程序后)以更改请求的状态并生成发票。
但我不知道如何使用我的 HTTP POST 控制器。我将在http://mymagento.com/mymodule/receive上发帖。
class MyCompanyName_MyModule_StandardController extends Mage_Core_Controller_Front_Action{
public function receiveAction() {
//How receive my POST HERE??
}
// ...
}
我很感激任何帮助