代码之家  ›  专栏  ›  技术社区  ›  David Thomas

如何使用jquery/jfeed从PHP页面解析RSS?

  •  0
  • David Thomas  · 技术社区  · 15 年前

    我正试图用jquery和 jfeed.>

    因为 same-origin policy i'm pulling the bbc's health news feed into a local page( http://www.davidrhysthomas.co.uk/play/proxy.php. ).

    最初,这与jfeed下载包中提供的 proxy.php script相同,但由于主机禁用了 allow_url_fopen(),所以我将php修改为以下内容:

    $url=“http://newsrss.bbc.co.uk/rss/newonline_uk_edition/health/rss.xml”;
    $ch=curl_init();
    curl_setopt($ch,curlot_url,$url);
    curl_setopt($ch,curlot_header,0);
    curl_setopt($ch,curlot_returnTransfer,1);
    $data=curl_exec($ch);
    
    回声“$数据”;
    卷曲关闭($ch);
    
    
    

    在我的本地机器上,它似乎生成与原始内容相同/可比较的内容。fopen

    现在,这似乎起作用了,我正在考虑将jfeed脚本设置为与页面一起使用,让我难堪的是,不知道如何操作。

    我明白,至少,这是可行的:

    jquery.getfeed({
    网址:'http://www.davidrhysthomas.co.uk/play/proxy.php',
    成功:函数(feed){
    警报(feed.title);
    }
    (});
    < /代码> 
    
    

    …但是,正如我确信你所预期的那样,它不属于。这里有哪些非输出可供您阅读:http://www.davidrhysthomas.co.uk/play/exampletest.html>。我真的不知道该怎么办。

    如果有人能提出一些建议,提示,提示,或者,在紧要关头,快速拍打脸颊,然后“振作起来!”非常感谢…。

    事先谢谢=).

    因为same origin policy我正在把英国广播公司的健康新闻提要放到一个本地页面上(http://www.davidrhysthomas.co.uk/play/proxy.php)

    原来是一样的proxy.php脚本在jfeed下载包中可用,但由于主机禁用allow_url_fopen()我将php修改为:

    $url = "http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/health/rss.xml";
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $data = curl_exec($ch);
    
    echo "$data";
    curl_close($ch);
    

    似乎产生了与原版相同/可比的内容fopen在我的本地机器上。

    现在这似乎可行了,我正在考虑设置jfeed脚本来处理页面,让我难堪的是,不知道怎么做。

    我明白,至少,这应该是可行的:

    jQuery.getFeed({
       url: 'http://www.davidrhysthomas.co.uk/play/proxy.php',
       success: function(feed) {
          alert(feed.title);
       }
    });
    

    …但是,我相信你会预料到的. 这里有哪些非输出可供您阅读:http://www.davidrhysthomas.co.uk/play/exampleTest.html. 我真的不知道该怎么办。

    如果有人能提出一些建议,提示,提示,或者,在紧要关头,快速拍打脸颊,然后“振作起来!”非常感谢…

    事先谢谢=)

    3 回复  |  直到 14 年前
        1
  •  1
  •   Fenton    15 年前

    在测试页上,您有一些脚本行看起来错误…

    <script type="text/javascript">
    
    jQuery(function() {
    
       url: 'http://www.davidrhysthomas.co.uk/play/proxy.php',
       success: function(feed) {
          alert(feed.title);
       }
    ...
    

    我觉得这应该更像…

    <script type="text/javascript">
    
    jQuery(function() {
    
       jQury.ajax( {
           url: 'http://www.davidrhysthomas.co.uk/play/proxy.php',
           success: function(feed) {
               alert(feed.title);
           }
       });
    ...
    
        2
  •  1
  •   sjagr    15 年前

    Zend框架有一个类,用于使用各种提要。

    它叫Zend_Feed

    http://framework.zend.com/manual/en/zend.feed.html

        3
  •  0
  •   Shikiryu DhruvJoshi    14 年前

    在您的PHP代码中,您遗漏了XML头:

    $url = "http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/health/rss.xml";
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $data = curl_exec($ch);
    header("content-type: text/xml"); 
    echo "$data";
    curl_close($ch);
    
    推荐文章