如何创建回调函数并存储变量的值

时间:2011-08-05 20:41:22

标签: javascript callback

我正在使用setInterval方法读取Rss提要并向用户显示通知,我想确保存储最新的提要标题,以便用户不会再次获得同一标题的多个通知。当前的实现不起作用,因为在响应返回之前我无法使用该变量。为了使事情变得更糟,我推迟执行。所以我猜我需要使用回调函数获取值并在该函数内部进行检查。我无法弄清楚如何进行回调并获得entry_title的值。

/** global variable **/

var global_Rsstitle;

/** end global variable **/

function get_rss1_feeds() {

    var Rss1_title = getRss("http://rss.cnn.com/rss/cnn_topstories.rss", function(entry_title) {
        if(global_Rsstitle != entry_title)
        global_Rsstitle = entry_title;
        console.log('test',global_Rsstitle); // the value is outputed but global var is not working
    });
console.log('test1',global_Rsstitle);   // outputted as undefined ??
    }

    google.load("feeds", "1");
    google.setOnLoadCallback(function () { setInterval(get_rss1_feeds, 5000); });

我的jsRss.js

function getRss(url, callback){
    if(url == null) return false;

    // Our callback function, for when a feed is loaded.
    function feedLoaded(result) {
        if (!result.error) {
            var entry = result.feed.entries[0];
            var entry_title = entry.title; // need to get this value
            callback && callback(entry_title);        
        }
    }
    function Load() {       
        // Create a feed instance that will grab feed.
        var feed = new google.feeds.Feed(url);
        // Calling load sends the request off.  It requires a callback function.
        feed.load(feedLoaded);      
    }    
    Load();             
}

你能看到entry_title - >这存储了我需要的价值 所以我需要得到这个值n将它存储到一个全局变量中 或者将它作为参数发送给另一个fns 这样我才能保持价值 当下次触发setInterval时 我得到一个新值,所以我可以比较并检查是否相同 如果相同,我不会将其显示给用户

1 个答案:

答案 0 :(得分:1)

google.load("feeds", "1");
google.setOnLoadCallback(function () {
    var oldTitle = '',
        newTitle = '',
        getRss = function (url, callback) {
            (url) && (function (url) {
                var feed = new google.feeds.Feed(url);

                feed.load(function (result) {
                    (!result.error && callback) && (callback(result.feed.entries[0].title));
                });
            }(url));
        };

    setInterval(function () {
        getRss(
            'http://rss.cnn.com/rss/cnn_topstories.rss',
            function (title) {
                newTitle = title;
                if(oldTitle !== newTitle) {
                    oldTitle = newTitle;
                    console.log('oldTitle: ', oldTitle);
                }
                console.log('newTitle: ', newTitle);
            }
        );
    }, 5000);
});