解析 pixdaus feed 时出现问题

发布于 2024-10-09 09:46:18 字数 549 浏览 0 评论 0原文

我正在尝试使用 java 脚本在客户端执行 Pixdaus feed 的解析。

我面临以下问题:

  1. 我无法直接从此网址执行解析:http://feeds.feedburner .com/PizdausPopularTodayPics

  2. 所以我尝试复制内容并将文件保存在以下位置: http://db.tt/5Zq98Kw 这样做时,我无法获取描述标签中的内容

任何人都可以帮助我解决这个问题吗?

我用来解析它的示例文件可以在以下位置找到: http://db.tt/MyIeYrc

:目前仅支持在firefox上解析。

谢谢,

米拉杰

I am trying to perform parsing of Pixdaus feed at client side using java script.

I am facing following problems:

  1. I am unable to perform parsing directly from this url: http://feeds.feedburner.com/PizdausPopularTodayPics

  2. So I tried to copy the content and save the file at this location: http://db.tt/5Zq98Kw while doing so I am unable to get content within description tags

Can anyone help me to resolve this?

The sample file which I am using to parse it can be found at: http://db.tt/MyIeYrc

Note: currently it supports parsing on firefox only.

Thanks,

Miraaj

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

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

发布评论

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

评论(1

在梵高的星空下 2024-10-16 09:46:18

由于“跨域”问题,无法从 Pixdaus 加载 XML 文档。

提取描述

我宁愿通过以下方式从文档中提取描述:

var desc = xmlDoc.getElementsByTagName('description');
for( var i = 0, len = desc.length; i < len; ++i ) { 
   console.log( desc[i].firstChild.nodeValue ); 
}

希望这有帮助。

Loading XML document from Pixdaus did not work due to 'Cross-domain' issues.

Extract description

I would rather extract the description from the document in the following way:

var desc = xmlDoc.getElementsByTagName('description');
for( var i = 0, len = desc.length; i < len; ++i ) { 
   console.log( desc[i].firstChild.nodeValue ); 
}

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文