我正在使用JQuery Google Feed plugin (gFeed)输出RSS Feed。我以前成功地使用过这个替代方案,但遗憾的是我偶然发现了一些问题。 RSS提要拒绝输出到指定的div。我已使用Google阅读器确认Feed 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>
答案 0 :(得分:1)
JQuery gFeed插件已经很老了(2007年)它使用的是FeedControl,我认为谷歌已弃用它。
我建议使用jquery-feeds plugin,然后使用以下代码:
$('#feeds').feeds({
feeds: {
feed1: 'https://www.phpbb.com/community/feed.php?mode=news'
}
});