提交表单

时间:2018-03-01 14:15:48

标签: module prestashop prestashop-1.6

我想在提交表格后去购物车。 这是我的表格:

<form method="post" id="mymodule" action="" >
    <input type="hidden" name="produit_id" value="{$produit->id}" />
    <input type="hidden" name="ipa" value="{$ipa}" />
    <a id="ajout_confection_panier" class="buttons_bottom_block no-print">
        <button type="submit" name="submit" class="exclusive">
                <span>Send</span>
        </button>
    </a>
</form>

我们怎么能这样做?

谢谢:)

2 个答案:

答案 0 :(得分:1)

您可以向表单添加操作,例如action="{$link->getPageLink('cart')}"或使用

$link = new Link();
Tools::redirect($link->getPageLink('cart'));

通过php

答案 1 :(得分:0)

您可以使用工具类中的重定向功能执行重定向。 在处理完表单数据后,只需将下面的代码放在控制器中即可。

// Redirects users to cart page
Tools::redirect('index.php?controller=cart');