gpt4 book ai didi

javascript - .bootstrapTable 在更新发生后执行代码

转载 作者:可可西里 更新时间:2023-11-01 02:09:40 24 4
gpt4 key购买 nike

我想在 Bootstrap 表更新后执行代码。

我写了下面的代码:

     $selectProductTable.bootstrapTable('refreshOptions', {
url: REST_PRODUCT_PREFIX + '/list',
ajaxOptions: {
headers: {
"Authorization": "Bearer " + token
}
},
success: function() {
updateUserInformation($("#userId").val())
}
});

但成功不会调用。

你能帮助实现它吗?

最佳答案

看看:https://github.com/wenzhixin/bootstrap-table/blob/develop/dist/bootstrap-table.js#L2014-L2033

特别是第 2026 行。您可以在那里看到,在 ajax 调用成功时,它会触发一个名为:“load-success.bs.table”的事件。

你可以听这个事件做这样的事情:

  $table.on('load-success.bs.table', function (res) {
console.log('this is the response from the ajax call: ' + JSON.stringify(res, null, 2));
})

http://jsfiddle.net/cm44uL3v/2/

该事件称为:onLoadSuccess,您可以在此处找到其作用的描述:http://bootstrap-table.wenzhixin.net.cn/documentation/#events

关于javascript - .bootstrapTable 在更新发生后执行代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44463934/

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