调用 Prestashop 后处理方法
Calling Prestashop postProcess method
我实际上正在为 Prestashop 1.7 开发支付方式模块,但现在我被困在 postProcess() 方法上我的 payment 页面,该方法在付款页面加载时立即被调用。你知道为什么会这样吗?我的 payment.tpl 它是一个简单的 html 表单来执行 POST 请求。
提前致谢。
已解决。它需要验证,因为 postProcess 在 init() 之后和 initContent() 之前运行:
public function postProcess()
{
if (!empty($_POST))
{
// Magic here!
}
}
我实际上正在为 Prestashop 1.7 开发支付方式模块,但现在我被困在 postProcess() 方法上我的 payment 页面,该方法在付款页面加载时立即被调用。你知道为什么会这样吗?我的 payment.tpl 它是一个简单的 html 表单来执行 POST 请求。
提前致谢。
已解决。它需要验证,因为 postProcess 在 init() 之后和 initContent() 之前运行:
public function postProcess()
{
if (!empty($_POST))
{
// Magic here!
}
}