雅虎小部件和使用 javascript 导入 rss/xml 提要

发布于 2024-08-10 05:33:56 字数 259 浏览 5 评论 0原文

我正在尝试使用 Konfabulator/Yahoo 创建 RSS 阅读器小部件。目前,我正在

使用 RSS 拉入,

var xmlDoc = COM.createObject("Microsoft.XMLDOM");
xmlDoc.loadXML("http:foo.com/feed.rss");

我在这里通过删除错误处理来简化它,但是我还能用什么来使用 konfabulator 来完成相同的任务呢?这有多跨平台?

I'm playing about creating an RSS reader widget using Konfabulator/Yahoo. At the moment I'm

pulling in the RSS using

var xmlDoc = COM.createObject("Microsoft.XMLDOM");
xmlDoc.loadXML("http:foo.com/feed.rss");

I've simplified it here by removing the error handling, but what else could I use to do the same task using konfabulator? And how cross platform is this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱*していゐ 2024-08-17 05:33:56

COM 是 Windows 特定的,Yahoo Widgets 内置了 XML 解析;所以远离 MSXML :P

您应该使用内置的 XMLDOM 对象。但是,由于您无论如何都想从网络下载 XML 文档,因此 XMLHttpRequest 支持直接获取 DOMDocument,而不必将数据传递给 XMLDOM >:

var request = new XMLHttpRequest();
request.open( "GET", "http://www.example.com/feed.rss", false);
request.send();
var xmlDoc = request.responseXML;

它的工作方式与浏览器上的 XMLHttpRequest 完全相同。

为了完整起见,如果您需要从字符串解析 XML:

var xmlDoc = XMLDOM.parse("<foo>hello world</foo>");

COM is Windows-specific, and Yahoo Widgets has XML parsing built-in; so stay away from MSXML :P

You should use the built-in XMLDOM object instead. But since you want to download the XML document from the ’net anyway, XMLHttpRequest supports getting a DOMDocument directly, without having to pass the data to XMLDOM:

var request = new XMLHttpRequest();
request.open( "GET", "http://www.example.com/feed.rss", false);
request.send();
var xmlDoc = request.responseXML;

It works exactly like the XMLHttpRequest on a browser.

For completeness, if you need to parse XML from a string:

var xmlDoc = XMLDOM.parse("<foo>hello world</foo>");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文