我有以下代码用于从数据库检索数据和设置网格 一旦我操作网格并保存在DB中,我希望再次加载网格 如何再次调用getJSON来重新加载数据和网格?
var jqxhr = $.getJSON('/Test/GetData', function () {}).done(function () {
//Load grid using data in jqxhr into grid
//Manipulte data in grid and save in DB
// At this point I want to call $.getJSON to refresh the grid
});
答案 0 :(得分:1)
像
这样的东西function loadData(repeat) {
var jqxhr = $.getJSON('/Test/GetData', function () {}).done(function () {
//Load grid using data in jqxhr into grid
//Manipulte data in grid and save in DB
// At this point I want to call $.getJSON to refresh the grid
if (repeat) loadData(false);
});
}
loadData(true);
这应循环一次。