如何通过Javascript检索跨域RSS(xml)

时间:2011-08-03 21:04:31

标签: javascript android rss cross-domain

我计划在 Androind应用

中显示Rss Feed

我有这个Rss Feed网址http://yofreesamples.com/category/free-coupons/feed/ 我无法控制或访问RSS源。

JSONP是使用JSON输出进行响应的请求的解决方案。但是在这里,我有RSS源,它可以用纯xml响应。

我有一个不使用代理来检索rss feed的约束。我试图用Google AJAX Feed API实现,但我遇到了一个问题。我需要获取entry_title的值 这是在回调函数内部,并在我的其他函数中使用它,在Android应用程序内显示系统通知,但我无法获取值,我不想使用任何容器并显示在div内。 有没有办法获得此值或是否存在针对此问题的仅客户端解决方法

/* ---------------------- global variables ---------------------- */
var entry;
/* ---------------------- end global variables ---------------------- */
    function getRss(url){ 

    if(url == null) return false;

    google.load("feeds", "1");

    // Our callback function, for when a feed is loaded.
    function feedLoaded(result) {
        if (!result.error) {
            // Check out the result object for a list of properties returned in each entry.
            // http://code.google.com/apis/ajaxfeeds/documentation/reference.html#JSON

            var entry = result.feed.entries[0];             
            var entry_title = entry.title;
        }
        entry = entry_title; // not working

    }


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

    }

    google.setOnLoadCallback(Load);             
}

1 个答案:

答案 0 :(得分:2)

我修改了你的代码并且它可以正常工作

/* ---------------------- global variables ---------------------- */
var entry;
/* ---------------------- end global variables ---------------------- */
function getRss(url){ 

    if(url == null) return false;

    google.load("feeds", "1");

    // Our callback function, for when a feed is loaded.
    function feedLoaded(result) {
        if (!result.error) {
            // Check out the result object for a list of properties returned in each entry.
            // http://code.google.com/apis/ajaxfeeds/documentation/reference.html#JSON

            entry = result.feed.entries[0];             
        }
        // pass it to other function
        someFunction(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);
    }

    // some function
    function someFunction(s) {
        alert(s);
    }

    google.setOnLoadCallback(Load);             
}

// calling it ?
getRss("http://yofreesamples.com/category/free-coupons/feed/");