Confluence automation - multiple ajax calls

Khan July 12, 2021

Dear Automation Atlassians :),

I'm working on a confluence page automation, where I need to perform an ajax call (final call) only after the rest of the (multiple)calls have been done.

Can somebody please guide me?

Below is the code snippet:

AJS.toInit(function () 
{
AJS.$(document).ready(function () {
$.each(product_teams, function () { $.each(this, function (name, value) { // Incidents - Call 1 AJS.$.ajax({ url: `${JIRA_REST_URL}${INCIDENTS}${value}${QUOT}${DURATION}${MAX_RES}`, type: "GET", success: function (data) { if (document.getElementById(`${name}_INCIDENTS`) != null) { document.getElementById(`${name}_INCIDENTS`).innerHTML = JSON.parse(JSON.stringify(data)).total; } }, error: function (err) { console.log(err) } }); }); });
$.each(product_teams, function () { $.each(this, function (name, value) { // Sprint defects - Call 2 AJS.$.ajax({ ..... }); }); });

$.each(teams, function (index, value) { // Final call > final results // Must be executed when Call 1 and Call 2 have finished AJS.$.ajax({ success: function (data) {
}, error: function (err) { console.log(err) } }); });
});});

The problem with the above code is that, the final ajax call is made, even when Call_1 and Call_2 have not yet finished. This results in invalid data.

Option:

$.when(Call_1(), Call_2()).done(function (FinalCall()) {}

doesn't work. Any ideas ?

 

Thanks in advance

Khan

1 comment

Khan July 30, 2021

May be no-one is interested in my post, but in reality solution is simpler than I thought :)

Here is the simplest solution:

(function () { 
// Function 1 AJS.$.ajax({ url: url, type: "GET", success: function (data) { //do something with the data }, error: function (err) { console.log(err) } });
// Function 2 AJS.$.ajax({ url: url, type: "GET", success: function (data) { //do something with the data }, error: function (err) { console.log(err) } });
});
}) ();

 

Khan July 30, 2021

Please close this thread

Comment

Log in or Sign up to comment
TAGS
AUG Leaders

Atlassian Community Events