JQuery / XML - & 的问题XML 属性中的字符
我正在尝试解析一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 XML 如下所示:
那么这就是无效的 XML。
&
应该被转义:修复创建无效 XML 的任何内容。
If your XML looks like this:
Then that's simply invalid XML. The
&
should be escaped:Fix whatever's creating the invalid XML.