Asynchronous function within for loop in javascript
I have a two dimensional array name:final_draft_arr and I am looping through each element of this array and calling a function name:getFileContentAsBase64 with each element of the array. The function is asynchronous and the for is finish before the function is executed properly for each element. How to solve this asynchronous behavior. I want the function to execute before the loop goes to its next iteration. The codes are given below.
getFileContentAsBase64:async function(path,callback){
await window.resolveLocalFileSystemURL(path, gotFile);
function gotFile(fileEntry) {
fileEntry.file(function(file) {
var reader = new FileReader();
reader.onloadend = function(e) {
var content = this.result;
callback(content);
};
reader.readAsDataURL(file);
});
}
},
base64ToBlob:function(base64, mime) {
mime = mime || '';
var sliceSize = 1024;
var byteChars = window.atob(base64);
var byteArrays = ;
for (var offset = 0, len = byteChars.length; offset < len; offset += sliceSize) {
var slice = byteChars.slice(offset, offset + sliceSize);
var byteNumbers = new Array(slice.length);
for (var i = 0; i < slice.length; i++) {
byteNumbers[i] = slice.charCodeAt(i);
}
var byteArray = new Uint8Array(byteNumbers);
byteArrays.push(byteArray);
}
return new Blob(byteArrays, {type: mime});
},
//this is the loop
var final_draft_arr = JSON.parse(retrievedData);
$.each(final_draft_arr, function(key, value){
var i_dat = new FormData();
var data_id_no = final_draft_arr[key][0];
var sub_arr_len = final_draft_arr[key].length;
for(j=1; j < sub_arr_len; j++){
getFileContentAsBase64(final_draft_arr[key][j],function(base64Image){
var base64ImageContent = base64Image.replace(/^data:image/jpeg;base64,/, "");
var blob_new = base64ToBlob(base64ImageContent, 'image/png');
i_dat.append('Bilder', blob_new);
});
}
});
javascript
add a comment |
I have a two dimensional array name:final_draft_arr and I am looping through each element of this array and calling a function name:getFileContentAsBase64 with each element of the array. The function is asynchronous and the for is finish before the function is executed properly for each element. How to solve this asynchronous behavior. I want the function to execute before the loop goes to its next iteration. The codes are given below.
getFileContentAsBase64:async function(path,callback){
await window.resolveLocalFileSystemURL(path, gotFile);
function gotFile(fileEntry) {
fileEntry.file(function(file) {
var reader = new FileReader();
reader.onloadend = function(e) {
var content = this.result;
callback(content);
};
reader.readAsDataURL(file);
});
}
},
base64ToBlob:function(base64, mime) {
mime = mime || '';
var sliceSize = 1024;
var byteChars = window.atob(base64);
var byteArrays = ;
for (var offset = 0, len = byteChars.length; offset < len; offset += sliceSize) {
var slice = byteChars.slice(offset, offset + sliceSize);
var byteNumbers = new Array(slice.length);
for (var i = 0; i < slice.length; i++) {
byteNumbers[i] = slice.charCodeAt(i);
}
var byteArray = new Uint8Array(byteNumbers);
byteArrays.push(byteArray);
}
return new Blob(byteArrays, {type: mime});
},
//this is the loop
var final_draft_arr = JSON.parse(retrievedData);
$.each(final_draft_arr, function(key, value){
var i_dat = new FormData();
var data_id_no = final_draft_arr[key][0];
var sub_arr_len = final_draft_arr[key].length;
for(j=1; j < sub_arr_len; j++){
getFileContentAsBase64(final_draft_arr[key][j],function(base64Image){
var base64ImageContent = base64Image.replace(/^data:image/jpeg;base64,/, "");
var blob_new = base64ToBlob(base64ImageContent, 'image/png');
i_dat.append('Bilder', blob_new);
});
}
});
javascript
you need an await on the getFileContentAsbase64 function and the loop to be inside an async function. Also swap your $.each to a for loop. Not sure if you can do an await inside a $.each
– JustLearning
Nov 22 '18 at 10:50
add a comment |
I have a two dimensional array name:final_draft_arr and I am looping through each element of this array and calling a function name:getFileContentAsBase64 with each element of the array. The function is asynchronous and the for is finish before the function is executed properly for each element. How to solve this asynchronous behavior. I want the function to execute before the loop goes to its next iteration. The codes are given below.
getFileContentAsBase64:async function(path,callback){
await window.resolveLocalFileSystemURL(path, gotFile);
function gotFile(fileEntry) {
fileEntry.file(function(file) {
var reader = new FileReader();
reader.onloadend = function(e) {
var content = this.result;
callback(content);
};
reader.readAsDataURL(file);
});
}
},
base64ToBlob:function(base64, mime) {
mime = mime || '';
var sliceSize = 1024;
var byteChars = window.atob(base64);
var byteArrays = ;
for (var offset = 0, len = byteChars.length; offset < len; offset += sliceSize) {
var slice = byteChars.slice(offset, offset + sliceSize);
var byteNumbers = new Array(slice.length);
for (var i = 0; i < slice.length; i++) {
byteNumbers[i] = slice.charCodeAt(i);
}
var byteArray = new Uint8Array(byteNumbers);
byteArrays.push(byteArray);
}
return new Blob(byteArrays, {type: mime});
},
//this is the loop
var final_draft_arr = JSON.parse(retrievedData);
$.each(final_draft_arr, function(key, value){
var i_dat = new FormData();
var data_id_no = final_draft_arr[key][0];
var sub_arr_len = final_draft_arr[key].length;
for(j=1; j < sub_arr_len; j++){
getFileContentAsBase64(final_draft_arr[key][j],function(base64Image){
var base64ImageContent = base64Image.replace(/^data:image/jpeg;base64,/, "");
var blob_new = base64ToBlob(base64ImageContent, 'image/png');
i_dat.append('Bilder', blob_new);
});
}
});
javascript
I have a two dimensional array name:final_draft_arr and I am looping through each element of this array and calling a function name:getFileContentAsBase64 with each element of the array. The function is asynchronous and the for is finish before the function is executed properly for each element. How to solve this asynchronous behavior. I want the function to execute before the loop goes to its next iteration. The codes are given below.
getFileContentAsBase64:async function(path,callback){
await window.resolveLocalFileSystemURL(path, gotFile);
function gotFile(fileEntry) {
fileEntry.file(function(file) {
var reader = new FileReader();
reader.onloadend = function(e) {
var content = this.result;
callback(content);
};
reader.readAsDataURL(file);
});
}
},
base64ToBlob:function(base64, mime) {
mime = mime || '';
var sliceSize = 1024;
var byteChars = window.atob(base64);
var byteArrays = ;
for (var offset = 0, len = byteChars.length; offset < len; offset += sliceSize) {
var slice = byteChars.slice(offset, offset + sliceSize);
var byteNumbers = new Array(slice.length);
for (var i = 0; i < slice.length; i++) {
byteNumbers[i] = slice.charCodeAt(i);
}
var byteArray = new Uint8Array(byteNumbers);
byteArrays.push(byteArray);
}
return new Blob(byteArrays, {type: mime});
},
//this is the loop
var final_draft_arr = JSON.parse(retrievedData);
$.each(final_draft_arr, function(key, value){
var i_dat = new FormData();
var data_id_no = final_draft_arr[key][0];
var sub_arr_len = final_draft_arr[key].length;
for(j=1; j < sub_arr_len; j++){
getFileContentAsBase64(final_draft_arr[key][j],function(base64Image){
var base64ImageContent = base64Image.replace(/^data:image/jpeg;base64,/, "");
var blob_new = base64ToBlob(base64ImageContent, 'image/png');
i_dat.append('Bilder', blob_new);
});
}
});
javascript
javascript
asked Nov 22 '18 at 10:47
Mohammad SyeduzzamanMohammad Syeduzzaman
83
83
you need an await on the getFileContentAsbase64 function and the loop to be inside an async function. Also swap your $.each to a for loop. Not sure if you can do an await inside a $.each
– JustLearning
Nov 22 '18 at 10:50
add a comment |
you need an await on the getFileContentAsbase64 function and the loop to be inside an async function. Also swap your $.each to a for loop. Not sure if you can do an await inside a $.each
– JustLearning
Nov 22 '18 at 10:50
you need an await on the getFileContentAsbase64 function and the loop to be inside an async function. Also swap your $.each to a for loop. Not sure if you can do an await inside a $.each
– JustLearning
Nov 22 '18 at 10:50
you need an await on the getFileContentAsbase64 function and the loop to be inside an async function. Also swap your $.each to a for loop. Not sure if you can do an await inside a $.each
– JustLearning
Nov 22 '18 at 10:50
add a comment |
1 Answer
1
active
oldest
votes
Use async function as a callback and await the asynchronous function call.
$.each(final_draft_arr, async function(key, value){
var i_dat = new FormData();
var data_id_no = final_draft_arr[key][0];
var sub_arr_len = final_draft_arr[key].length;
for(j=1; j < sub_arr_len; j++){
await getFileContentAsBase64(final_draft_arr[key][j],function(base64Image){
var base64ImageContent = base64Image.replace(/^data:image/jpeg;base64,/, "");
var blob_new = base64ToBlob(base64ImageContent, 'image/png');
i_dat.append('Bilder', blob_new);
});
}
});
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53429225%2fasynchronous-function-within-for-loop-in-javascript%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Use async function as a callback and await the asynchronous function call.
$.each(final_draft_arr, async function(key, value){
var i_dat = new FormData();
var data_id_no = final_draft_arr[key][0];
var sub_arr_len = final_draft_arr[key].length;
for(j=1; j < sub_arr_len; j++){
await getFileContentAsBase64(final_draft_arr[key][j],function(base64Image){
var base64ImageContent = base64Image.replace(/^data:image/jpeg;base64,/, "");
var blob_new = base64ToBlob(base64ImageContent, 'image/png');
i_dat.append('Bilder', blob_new);
});
}
});
add a comment |
Use async function as a callback and await the asynchronous function call.
$.each(final_draft_arr, async function(key, value){
var i_dat = new FormData();
var data_id_no = final_draft_arr[key][0];
var sub_arr_len = final_draft_arr[key].length;
for(j=1; j < sub_arr_len; j++){
await getFileContentAsBase64(final_draft_arr[key][j],function(base64Image){
var base64ImageContent = base64Image.replace(/^data:image/jpeg;base64,/, "");
var blob_new = base64ToBlob(base64ImageContent, 'image/png');
i_dat.append('Bilder', blob_new);
});
}
});
add a comment |
Use async function as a callback and await the asynchronous function call.
$.each(final_draft_arr, async function(key, value){
var i_dat = new FormData();
var data_id_no = final_draft_arr[key][0];
var sub_arr_len = final_draft_arr[key].length;
for(j=1; j < sub_arr_len; j++){
await getFileContentAsBase64(final_draft_arr[key][j],function(base64Image){
var base64ImageContent = base64Image.replace(/^data:image/jpeg;base64,/, "");
var blob_new = base64ToBlob(base64ImageContent, 'image/png');
i_dat.append('Bilder', blob_new);
});
}
});
Use async function as a callback and await the asynchronous function call.
$.each(final_draft_arr, async function(key, value){
var i_dat = new FormData();
var data_id_no = final_draft_arr[key][0];
var sub_arr_len = final_draft_arr[key].length;
for(j=1; j < sub_arr_len; j++){
await getFileContentAsBase64(final_draft_arr[key][j],function(base64Image){
var base64ImageContent = base64Image.replace(/^data:image/jpeg;base64,/, "");
var blob_new = base64ToBlob(base64ImageContent, 'image/png');
i_dat.append('Bilder', blob_new);
});
}
});
answered Nov 22 '18 at 10:50
EaswarEaswar
7698
7698
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53429225%2fasynchronous-function-within-for-loop-in-javascript%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
you need an await on the getFileContentAsbase64 function and the loop to be inside an async function. Also swap your $.each to a for loop. Not sure if you can do an await inside a $.each
– JustLearning
Nov 22 '18 at 10:50