1

我正在使用JQuery Google Feed 插件 (gFeed)来输出 RSS 提要。我之前已经成功地使用过这个替代方案,但不幸的是我偶然发现了一些问题。RSS 提要拒绝输出到指定的 div。我已确认 使用 Google 阅读器正确显示提要https://www.phpbb.com/community/feed.php?mode=news 。

我的网站是http://removed/index并且我还咨询了 [Google Feed API 开发人员页面][3]。

这是我的代码:

<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<!-- include this plugin -->
<script type="text/javascript" src="jquery.gfeed.js"></script>
<script type="text/javascript">


 // when the DOM is ready, convert the feed anchors into feed content
  $(document).ready(function() {
   // add a feed manually
    $('#feeds').gFeed({ 
       url: 'https://www.phpbb.com/community/feed.php?mode=news',
         title: 'A List Apart Feed (Added by Brute Force)'
     });    
    });
    </script>

     <div id="feeds">

     </div>
4

1 回答 1

1

JQuery gFeed 插件很旧(2007 年),它使用 FeedControl,我相信它已被 Google 弃用。

我建议使用jquery-feeds 插件,然后使用如下代码:

$('#feeds').feeds({
    feeds: {
        feed1: 'https://www.phpbb.com/community/feed.php?mode=news'
    }
});​

在这里摆弄一个演示

于 2012-12-14T21:32:18.973 回答