prototype.js Ajax.PeriodicalUpdater调用自己的函数进行更新

时间:2009-05-18 00:11:38

标签: javascript ajax prototypejs

任何人都知道是否可以让PeriodicalUpdater将收到的数据传递给我指定的更新所需字段的函数?

我想处理收到的数据,然后让PeriodicalUpdater函数更新字段。

1 个答案:

答案 0 :(得分:5)

是的,你可以传递一个onsuccess回调,就像你对任何其他AjaxRequest一样。

new Ajax.PeriodicalUpdater('container', '/someurl', {
  method: 'get', 
  frequency: 3, 
  decay: 2;
  onsuccess: function(response){
     myCustomFunction(response.responseText);
  }
});

function myCustomFunction(data){
  /* do something */
}

请参阅Ajax.PeriodicalUpdaterAjax Options