我尝试发送到我的模块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)
}
});
此致
答案 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)
}
});