使用 jfeed 解析 RSS 提要仅对某些字段失败
我正在使用最新版本的 jFeed 和最新的 jQuery。我知道 jFeed 相当过时,并且不再受支持,但 Firefox 似乎是唯一在使用此设置解析 RSS 提要时出现问题的浏览器。我修改了 jFeed 以提取 XML 节点“dc:date”中的“日期”字段。我唯一能想到的是 Firefox 由于分号而出现问题。 (所有其他字段都工作正常,并且其中没有此字符)。
我已经更新了 jFeed 原型以包含日期字段和 jFeed 中的修改部分,该部分在除 Firefox 之外的所有内容中都可以正常解析,现在看起来像这样:
c.date = jQuery(this).find("date").eq( 0).text();
没有抛出任何错误,只是返回一个空值。
I'm using the latest version of jFeed with the latest jQuery. I know jFeed is rather outdated, and no longer supported, but firefox seems to be the only browser that is having an issue parsing an RSS feed using this setup. I've modified jFeed to pull a 'date' field which is in the XML node "dc:date". The only thing I can think of is firefox is having an issue because of the semicolon. (All other fields are working fine and do not have this character in them).
I've updated the jFeed prototype to include the date field and the modified portion in jFeed that is parsing fine in everything other than firefox looks like this now:
c.date = jQuery(this).find("date").eq(0).text();
No errors are being thrown, and simply a null value is being returned.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用
\\
对其中的:
进行转义,因为它是 jQuery 的保留字符。请参阅有关选择器的文档,
尝试一下,
You need to escape the
:
in there with\\
as it is a reserved character for jQuery.See the docs on selectors,
Try,