我正在尝试使用Google Loader API从RSS新闻Feed加载前6个条目:
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("feeds", "1");
function initialize() {
var feed = new google.feeds.Feed("https://www.tu-braunschweig.de/aip/prodlog/aktuelles/rssfeed.xml");
feed.setNumEntries(6);
feed.load(function(result) {
if (!result.error) {
console.log(result.feed.entries);
}
});
}
google.setOnLoadCallback(initialize);
</script>
但是,由于缺少前两个条目中的第二个,我只返回了5个条目。我认为这是由于条目的发布日期是前两个条目的同一天(我将其更改为测试并最终显示 - 但从长远来看这不是解决方案......)。但是,到目前为止,我无法弄清楚如何解决这个问题。对此有任何帮助表示赞赏。