我使用prestashop v 1.5.6并且一个模块让我很头疼。我无法理解是什么导致了这个问题,因为它只是在访问结帐页面或刷新页面时不会一直出现。
功能是:
function loadcart() {
$('#opc-right-summary-content #opc-page-loader').fadeIn();
$.ajax({
type: 'POST',
url: orderOpcUrl,
async: false,
cache: false,
dataType: "json",
data: 'ajx=true&method=loadcart&token=' + static_token,
success: function (jsonData) {
if (jsonData.hasError) {
var errors = '';
for (error in jsonData.errors)
//IE6 bug fix
if (error != 'indexOf')
errors += jsonData.errors[error] + "\n";
alert(errors);
} else {
$('.cart-container').html(jsonData.cart_bl);
if(jsonData.err_isset){
$('#cart_errors').html('');
$('#cart_errors').html(jsonData.err);
$.each(jsonData.array, function(){
var elem = this;
$('.cart_item').each(function(){
var id = $(this).attr('id');
if (strpos(id, 'product_' + elem.id_product + '_' + elem.id_product_attribute) !== false){
$(this).find('td').css('background-color', '#e46f61');
}
});
});
}
$('#opc-right-summary-content #opc-page-loader').fadeOut();
}
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert("TECHNICAL ERROR: unable to loal оплата \n\nDetails:\nError thrown: " + XMLHttpRequest + "\n" + 'Text status: ' + textStatus);
}
});
}
JS弹出错误: 技术错误:无法忍受оплата 细节: 抛出的错误:[object Object] 文字状态:错误
消费者错误是:
[Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
send @ jquery-1.7.2.min.js:4
jquery-1.7.2.min.js Failed to load resource: the server responded with a status of 500 (Internal Server Error)
send @ jquery-1.7.2.min.js:4
POST http://-------/ru/quick-order 500 (Internal Server Error)
send @ jquery-1.7.2.min.js:4
ajax @ jquery-1.7.2.min.js:4
loadcart @ main.js:618
(anonymous) @ states.js:15
o @ jquery-1.7.2.min.js:2
fireWith @ jquery-1.7.2.min.js:2
ready @ jquery-1.7.2.min.js:2
B @ jquery-1.7.2.min.js:2
谁是AJAX的大师,请给我一个提示,说明为什么会出现这个错误?