JQuery / XML - & 的问题XML 属性中的字符

发布于 2024-12-06 20:53:20 字数 440 浏览 0 评论 0原文

我正在尝试解析一个 XML 文档,该文档具有一个名为“link”的属性,该属性提供 URL 字符串。问题是,每当 URL 字符串包含 & 时,符号 - 例如:

http://www.site.com/segment/page.html#/?view=viewName&model=4

xml 解析中断并且不会解析此节点之外的任何内容。这是我的代码:

parseVehicles: function(xmlNode) {  
    $j(xmlNode).children().each(function() {
        console.log(supertree.vehicleCount);
        supertree.vehicleCount++;
    });
},

如何防止它被破坏?

I'm trying to parse an XML document that has an attribute called "link" which provides a URL string. The problem is, whenever the URL string includes an & symbol - for example:

http://www.site.com/segment/page.html#/?view=viewName&model=4

The xml parsing breaks and won't parse anything beyond this node. Here's my code:

parseVehicles: function(xmlNode) {  
    $j(xmlNode).children().each(function() {
        console.log(supertree.vehicleCount);
        supertree.vehicleCount++;
    });
},

How do I keep this from breaking?

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

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

发布评论

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

评论(1

满意归宿 2024-12-13 20:53:20

如果您的 XML 如下所示:

<foo link="http://www.site.com/segment/page.html#/?view=viewName&model=4" />

那么这就是无效的 XML。 & 应该被转义:

<foo link="http://www.site.com/segment/page.html#/?view=viewName&model=4" />

修复创建无效 XML 的任何内容。

If your XML looks like this:

<foo link="http://www.site.com/segment/page.html#/?view=viewName&model=4" />

Then that's simply invalid XML. The & should be escaped:

<foo link="http://www.site.com/segment/page.html#/?view=viewName&model=4" />

Fix whatever's creating the invalid XML.

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