JohnBarulich1
8 years agoQrew Cadet
Async concept question with API_DeleteRecord
I have a concept question pertaining to API_DeleteRecord, although could be said for any API call.
Let's say I have a really basic script
Would it even be necessary to use async/await for this to execute successfully? Does the server allow several ajax requests at once?
Let's say I have a really basic script
for (var i = 0; i < 5; i++){ $.get(url, act: "API_DeleteRecord", rid: i );}Would it even be necessary to use async/await for this to execute successfully? Does the server allow several ajax requests at once?