gpt4 book ai didi

javascript - 带有数据的初始化表仅适用于断点

转载 作者:行者123 更新时间:2023-11-30 17:07:04 25 4
gpt4 key购买 nike

我使用使用 ajax 获得的数据初始化表(使用此库 bootstrap-table)。

var arr = [];
var getRows = function () {
$.ajax({
type: "GET",
url: hostUrl,
contentType: "application/json;",
dataType: "json",
success: function (result) {
arr = result.d;
}
});
return arr; // breakpoint here
};

$('#bootstrap-table').bootstrapTable({
data: getRows()
});

仅当我在 getRows 函数中设置返回断点时,此代码才有效。尝试在返回之前添加超时 - 但这没有帮助。

如果我不添加断点,我将一无所获。

最佳答案

ajax 调用是异步的。

arr 在调用返回之前返回。

你最好用这样的东西:

        $.ajax({
type: "GET",
url: hostUrl,
contentType: "application/json;",
dataType: "json",
success: function (result) {
$('#bootstrap-table').bootstrapTable({
data: result.d
});
}
});

关于javascript - 带有数据的初始化表仅适用于断点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27783768/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com