因此,我從服務器返回一個大的JSON對象,然後從它構建一個數據表並將它顯示在窗體上。這通常需要幾秒鐘..所以我想到了一個加載欄。 我有加載欄背後的邏輯,但是構建hmtl數據的循環鎖定了瀏覽器,我無法調用我需要更新的元素。如何在Javascript中執行線程操作
這裏是我的功能來做到這一點:
function buildDataTable(db_table, container_id) {
var $pb = $("<div id=\"progress-bar\"></div>");
$(container_id).html($pb);
$pb.progressbar({
value: 0
});
$.post("post location", {
view: "all"
}, function (data) {
var headers = "";
var contents = "";
var jsonObject = $.parseJSON(data);
var tik = Math.round(jsonObject.length/100);
for (key in jsonObject[0]) {
headers += "<th>" + key.replace(" ", " ") + "</th>";
}
for (i in jsonObject) {
contents += "<tr>";
for (j in jsonObject[i]) {
contents += "<td class=\"border-right\">" + jsonObject[i][j] + "</td>";
}
contents += "</tr>";
if(Math.round(i/tik) == i/tik) {
/* if I run the alert (between popups) i can see the progressbar update, otherwise I see no update, the progressbar appears empty then the $(container_id) element is updated with the table i've generated */
alert('');
$pb.progressbar("value",i/tik);
}
}
var html = "<table cellpadding=\"5\" cellspacing=\"0\"><thead><tr>" + headers + "</tr></thead><tbody>" + contents + "</tbody></table>";
$(container_id).html(html);
$(container_id).children("table:first").dataTable({
"bJQueryUI": true,
"sScrollX": "100%"
});
});
}
JavaScript是單線程的。您必須將工作分解成幾部分,並使用「setTimeout」按順序調用它們,以便在處理過程中更新GUI,但即使如此,瀏覽器仍然顯得有些反應遲鈍。 – maerics
那麼我最好只使用一個動畫gif而不顯示真正的進展? – rlemon
@maerics:我認爲異步請求打開了一個新的線程? – Anthony