簡體   English   中英

JavaScript構建JSON異步和dynamicall

[英]JavaScript building JSON asynchronous and dynamicall

我在使用異步JavaScript時遇到了一些麻煩。 我在jQuery AJAX調用中調用了一個函數,並且在此函數中可能還有其他異步方法調用。 此刻我呆在那里。

在這里,我有jQuery AJAX函數調用的代碼片段:在這里,我動態地構建一個JSON對象。

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;
}

告訴別人一些技巧,該如何解決我的問題,或者如何使JavaScript最佳地異步工作。

是的,只需使用回調模式:

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
}

在您的代碼中,您可以像這樣使用它:

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

編輯這是解決同一問題的兩種解決方案的示例。 一種帶有回調模式,另一種沒有回調模式:

沒有回調

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

打回來

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);
    });
});

顯然,回調模式更加混亂,但是如果您要處理異步操作,則絕對需要它,例如:

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
});

這個想法是傳遞一個函數,該函數將在異步操作完成后被調用。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM