Prestashop将令牌添加到ajax文件

时间:2016-12-03 07:54:50

标签: php jquery ajax module prestashop

我尝试发送到我的模块prestashop插件。我收到了一条消息"技术验证已被拒绝"。此消息包含

您需要在ajax文件中添加令牌。

我的ajax脚本是:

$.ajax({
        type: "post", 
        url : "../modules/priceupdate/ajax-call.php",
        data: "ajax=ps_ajax_update_prices",
        success : function(response){
            $('#update-ajaxresponse').html(response)
        }
    });

此致

1 个答案:

答案 0 :(得分:2)

通常,令牌由PrestaShop声明,您应该只在data中添加令牌:

$.ajax({
    type: "post", 
    url : "../modules/priceupdate/ajax-call.php",
    data: "ajax=ps_ajax_update_prices&token=" + token ,
    success : function(response){
        $('#update-ajaxresponse').html(response)
    }
});