如何增加超时以延长ajax响应时间?

时间:2019-02-13 13:12:30

标签: javascript ajax post

我有以下ajax请求:

$.ajax({
    url: drupalSettings.ajaxFiltersRequest, 
    timeout: 9000000,
    contentType: 'application/json',
    type: "POST",    
    dataType: "json",    
    data: JSON.stringify({
    'mobileDescriptions' : 'jsDescriptions',
    'dbColor' : dbColor
    })
}

它给我一个502代理错误。代理服务器无法处理该请求。我检查了服务器上的日志,并正在检索数据。因为有很多数据,所以只花了很长时间。这样的错误有解决方案吗?

0 个答案:

没有答案
相关问题