如何处理使用JavaScript发送的多个请求?

时间:2018-09-12 01:47:23

标签: javascript jquery settimeout requesthandler

在平台上工作,以启用自动票务功能。为此使用REST API请求来创建票证。不幸的是,同时弹出两个请求,导致创建重复的票证。

如何处理这种情况并仅发送这些请求之一?

尝试将第二个请求添加到第一个请求的响应回调中,尽管这似乎不起作用。

if (flag == 1){
	logger.debug("Node-down alarm-Request raised - +sitn_id);
	clearTimeout(mouseoverTimer);
	mouseoverTimer  = setTimeout(function(){  
	logger.debug("Inside Call back function - ");
        //function call for ticket creation
	incidentRequest(sitn_id,confUtil.config.mule_url);
}, 10);
            
           

1 个答案:

答案 0 :(得分:0)

您确实应该显示更多发出请求的代码,尽管似乎您在'incidentRequest'中正在做一些ajax,所以我认为(如果那不是您正在做的,请,显示您的代码。

要在AJAX调用中停止“两次发送”,很简单:

function incidentRequest(sitn_id,confUtil.config.mule_url){
    // stop the double by clearing the cache
    $.ajaxSetup({cache: false});
    // continue on with the AJAX call
    // presuming the url you want is confUtil.config.mule_url
    // and the data you want to send is sitn_id
     $.post(confUtil.config.mule_url, 'sitn_id=' + sitn_id, function (data) {
         // do cool stuff
     });
}

希望这将帮助您前进。如果没有,那么我们将需要更多有关所有这些情况的代码。