ios XML 解析:在某些设备上 Error Domain=NSXMLParserErrorDomain Code=76

发布于 2024-11-10 15:28:14 字数 281 浏览 1 评论 0原文

在解析 XML Feed 时,我在一台特定 iPhone 4 设备上的应用程序中遇到此错误:

error parsing XML: Error Domain=NSXMLParserErrorDomain Code=76

我无法确定为什么它发生在该特定设备上而不是其他设备上:这是相同的 feed。源 XML 结构中没有 XML 错误,并且所有设备都具有相同的全局常规设置。

根据文档,错误 76 是 NSXMLParserTagNameMismatchError。

I get this error in my app on one specific iPhone 4 device while parsing an XML Feed:

error parsing XML: Error Domain=NSXMLParserErrorDomain Code=76

I am not able to determine why it's happening on this particular device and not others: this is the same feed. There are no XML errors in the feed XML structure and all devices have the same global general settings.

According to the docs, Error 76 is NSXMLParserTagNameMismatchError.

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

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

发布评论

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

评论(3

孤独难免 2024-11-17 15:28:14

您的 xml 可能不一致。根据 http://validator.w3.org/#validate_by_input 进行验证

Your xml may be inconsistent. Validate it against http://validator.w3.org/#validate_by_input

风铃鹿 2024-11-17 15:28:14

将您的 xml 剪切并粘贴到此处进行验证。错误消息非常可靠。

Cut and paste your xml here to validate. The error messages are pretty solid.

浅唱々樱花落 2024-11-17 15:28:14

当结束标记与开始标记不匹配时会发生此错误,如下所示:

<hello>
    <hi />
    <hi />
    <hi />
</goodbye>

<hello />
    <hi />
    <hi />
    <hi />
</hello>

(标记在第一行关闭)

this error happens when the closing tag doesn't match the opening tag, like so:

<hello>
    <hi />
    <hi />
    <hi />
</goodbye>

or

<hello />
    <hi />
    <hi />
    <hi />
</hello>

(the tag was closed on the first line)

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