无法在全局变量中存储值

时间:2011-08-05 17:27:08

标签: javascript rss global-variables

我正在使用setInterval方法读取Rss提要并向用户显示通知,我想确保存储最新的提要标题,以便用户不会再次获得同一标题的多个通知。所以我在 notification.js 的顶部声明了一个全局var global_Rsstitle 。现在我尝试将 entry_title 的值传递给全局var,在调用setinterval方法后,该值不会保留在global var中。是否有更好的方法来存储 entry_title 的值,并在每次调用setInterval方法时进行检查,以避免多次通知相同的标题。

我的notification.js

/** 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();             
}

3 个答案:

答案 0 :(得分:2)

您定义了一个名为global_Rsstitle;的变量,但在您的代码中使用了Rsstitle。它们是两个不同的东西

答案 1 :(得分:2)

您不应该设置global_Rsstitle而不是Rsstitle吗?

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
    });   
}

<强>更新

你确实意识到在反应回来之前你不能使用那个变量,对吗?

换句话说,你不能这样做:

get_rss1_feed();
alert(global_Rsstitle);

因为在读取Feed并且分配了变量之前将触发警报。更糟糕的是,您将延迟执行时间间隔。

答案 2 :(得分:1)

宣布var global_Rsstitle;后,您永远不会为其分配任何内容。它需要在某些表达的LHS上。将global_添加到变量不会使其成为全局变量;在函数之外定义它。