jquery getJSON递归调用

时间:2013-08-09 16:11:44

标签: jquery recursion getjson slickgrid

我有以下代码用于从数据库检索数据和设置网格 一旦我操作网格并保存在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
});

1 个答案:

答案 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);

这应循环一次。