我正在使用Google Feed JSAPI来读取/解析提要。问题是,当提要更改时,以前的条目将无效(链接和图像不起作用),因此我无法加载提要的缓存版本。我以为在加载提要时会有一个不使用缓存版本的选项,但我没有看到。我的解决方案是在提要url的末尾添加一个变量(t),这样它就"唯一"了,但这看起来很难(但它有效)。有人知道更好的方法吗?
function onLoad() {
// Create a feed instance that will grab feed feed.
var feed = new google.feeds.Feed(feedLocation+"&t="+new Date().getTime());
// Request the results in XML (so that we can parse out all the info
feed.setResultFormat(google.feeds.Feed.XML_FORMAT);
//must set this - if you don't, it defaults to 4
feed.setNumEntries(50);
// Calling load sends the request off. It requires a callback function.
feed.load(feedLoaded);
}
这个答案可能来得很晚,但我看到了这篇文章,并使用pxpgraphics
注释获得了解决方案。对于那些需要使缓存无效的人,这将做到。注意,这个代码示例是从RSS提要中提取其他数据;根据您的需要进行修改。
google.load("feeds", "1");
function initialize() {
var feedLocation = "http://feeds.bbci.co.uk/news/rss.xml";
/* Use the randomNum and the time to invalidate the Google cache and
fetch the latest articles.
*/
var randomNum = Math.floor((Math.random() * 10000) + 1);
var url = feedLocation + "?&t=" + new Date().getTime() + randomNum;
var feed = new google.feeds.Feed(url);
feed.setNumEntries(1000);
feed.load(function(result) {
if (!result.error) {
var container = document.getElementById("feed");
for (var i = 0; i < result.feed.entries.length; i++) {
var entry = result.feed.entries[i];
var div = document.createElement("div");
div.appendChild(document.createTextNode(entry.title));
div.innerHTML += "<br>" + entry.publishedDate;
div.innerHTML += "<br>" + entry.content;
container.appendChild(div);
}
}
});
}
google.setOnLoadCallback(initialize);
此代码假设页面上有以下DIV
:
<div id="feed"></div>
尝试feed.includeHistoricalEntries();
它可能会解决您的问题。