简体   繁体   中英

JavaScript building JSON asynchronous and dynamicall

I have some trouble with asynchronous JavaScript. I call a function within a jQuery AJAX call, and in this function there are probably other asynchronous methods calls. I stuck in there on the moment.

Here I have the code snippet which is called by the jQuery AJAX function: Here I build dynamically a JSON object.

function getJSONObjektList() {
    //MainJSON
    var jsonObjekt = {};
    jsonObjekt.ObjektId = [];
    jsonObjekt.Selected = [];

    doc = XYZ.GetCurrentDocument();
    //probably also an asynchrounous call
    doc.GetAllObjects(function (objects) {
        for (var i = 0; i < objects.length; i++) {
            var obj = objects[i];
            var id = obj.id;
            var caption = obj.caption;
            var type = obj.type;
            var my = obj.my;
            console.log("[obj:" + obj + " id:" + id + " caption:" + caption + " type:" + type + " my: " + my + "]");

            //liste alle verfuegbaren  Objekte auf 
            jsonObjekt.ObjektId.push(id);

            if (type === "Statusbox") {
                doc.GetObject(id, function () {
                    var statusboxInhalt = this.Data.Rows;
                    //inner JSON object                        
                    var utilJSONObjekt;

                    for (var j = 0; j < statusboxInhalt.length; j++) {
                        // make sure to re-initialize so we don't update the same reference
                        utilJSONObjekt = {};
                        utilJSONObjekt.SelectedObjektId;
                        utilJSONObjekt.SelectedObjektWerte = [];

                        var inhalt = statusboxInhalt[j];
                        console.log("Name: " + inhalt[0].text + " Wert: " + inhalt[2].text);

                        utilJSONObjekt.SelectedObjektId = inhalt[0].text;

                        var valAr = inhalt[2].text.split(",");
                        for (var k = 0; k < valAr.length; k++) {
                            utilJSONObjekt.SelectedObjektWerte.push($.trim(valAr[k]));
                        }
                        jsonObjekt.Selected.push(utilJSONObjekt);
                        //**till here is the jsonObject not null or empty, there are some values in there**
                    }
                });
            }
        }
    });
    //**but on the return statment is the jsonObjekt empty**
    return jsonObjekt;
}

Have someone some tips how can I solve my problem, or how can I make JavaScript best asynchronously working.

Yeah, simply use callback pattern:

function getJSONObjektList(callback) { // <--- note callback
   // asynchronous code starts here...
               for (var k = 0; k < valAr.length; k++) {
                   utilJSONObjekt.SelectedObjektWerte.push($.trim(valAr[k]));
               }
               jsonObjekt.Selected.push(utilJSONObjekt);
               callback(jsonObjekt);
   // ...and ends here
}

and in your code you can use it like that:

getJSONObjektList(function(jsonObjekt) {
    console.log(jsonObjekt);
    // other code
});

EDIT Here's an example of two solutions to the same problem. One with callback pattern and one without it:

no callback

var add = function(x,y) {
    return x+y;
};
var x = 1;
var sum = add(x, 1);
var sum2 = add(sum, 1);
console.log(sum2);

callback

var add = function(x,y,callback) {
    callback(x+y);
}
var x = 1;
add(x, 1, function(sum) {
    add(sum, 1, function(sum2) {
        console.log(sum2);
    });
});

Obviously the callback pattern is more messy, but if you are dealing with asynchronous operations then you absolutely need it, for example:

var add = function(x, y, callback) {
    // add numbers after 2 seconds
    setTimeout(function() {
        callback(x+y);
    }, 2000);
}
add(1, 2, function(sum) {
    console.log(sum);
    // will produce 3 after 2 seconds
    // you can continue your code here
});

The idea is to pass a function which will be called after the asynchronous operation is done.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM