使用 jfeed 解析 RSS 提要仅对某些字段失败

发布于 2024-09-29 15:19:41 字数 361 浏览 3 评论 0原文

我正在使用最新版本的 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 技术交流群。

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

发布评论

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

评论(1

最冷一天 2024-10-06 15:19:41

您需要使用 \\ 对其中的 : 进行转义,因为它是 jQuery 的保留字符。

请参阅有关选择器的文档,

如果您希望使用任何元字符 (#;&,.+*~':"!^$=>|/@ ) 作为名称的文字部分,则必须转义该字符带有两个反斜杠:\\ 例如,如果您有一个带有 name="names[]" 的输入,则可以使用选择器 $("输入[名称=名称\\[\\]]")

尝试一下,

jQuery(this).find("dc\\:date")

You need to escape the : in there with \\ as it is a reserved character for jQuery.

See the docs on selectors,

If you wish to use any of the meta-characters (#;&,.+*~':"!^$=>|/@ ) as a literal part of a name, you must escape the character with two backslashes: \\. For example, if you have an an input with name="names[]", you can use the selector $("input[name=names\\[\\]]").

Try,

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