保存setInterval函数()返回值

时间:2014-11-26 20:55:49

标签: javascript jquery cordova

  window.setInterval( function(){ FeedCache.getNext() }, 30000);

我需要在间隔调用该函数后每隔30秒从FeedCache.getNext()返回值。有没有办法可以保存返回值,比如

  window.setInterval( function(){ currentFeed = FeedCache.getNext() }, 30000);

Than函数返回一个feed数组并基于其中一个数组元素displayImage我需要更改$location.path

我正在研究cordova和离子。函数FeedCache.getNext()位于.factory,我在控制器中有setInterval() 提前谢谢。

1 个答案:

答案 0 :(得分:0)

您可以将返回值保存在全局变量中,这样您的方法也可以访问它,任何其他方法也可以访问它。