在 XML 文档中包含未使用的名称空间声明是否违法?

发布于 2024-07-23 06:56:40 字数 354 浏览 4 评论 0原文

例如,根据 W3C XML 1.0 建议,以下 XML 文档是否被视为有效? 请注意,文档中的任何地方都没有引用名称空间“future”。

尽管这可能不被认为是好的风格,但我相信无论未使用的命名空间如何,该文档仍然有效。 有人能证实或反驳这个假设吗?

谢谢,马特

<?xml version="1.0" encoding="UTF-8" ?>
<root xmlns='http://foo.org/v1'  xmlns:future='http://bar.org/v1'>
    <child>1</child>
</root>

For instance, is the following XML document considered valid as per the W3C XML 1.0 recommendation? Notice that the namespace 'future' is not referenced anywhere in the document.

Although this may not be considered good style, my belief is that the document is still valid regardless of the unused namespace. Can anyone confirm or refute this assumption?

Thanks, Matt

<?xml version="1.0" encoding="UTF-8" ?>
<root xmlns='http://foo.org/v1'  xmlns:future='http://bar.org/v1'>
    <child>1</child>
</root>

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

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

发布评论

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

评论(4

无妨# 2024-07-30 06:56:40

标准似乎没有表明其他情况。 第 7 节“文档的一致性”给出了一些要求,以便调用文档“命名空间格式良好”和“命名空间有效”,但没有说明不能有未使用的命名空间声明。

第 3 节给出了一个示例,其中包含未使用的命名空间:

<x xmlns:edi='http://ecommerce.example.org/schema'>
    <!-- the "edi" prefix is bound to http://ecommerce.example.org/schema
         for the "x" element and contents -->
</x>

The standard does not seem to indicate otherwise. Section 7, "Conformance of Documents" gives a few requirements in order to call a document "namespace-well-formed" and "namespace-valid" but nothing says that you can't have an unused namespace declaration.

In section 3, an example is given, which contains an unused namespace:

<x xmlns:edi='http://ecommerce.example.org/schema'>
    <!-- the "edi" prefix is bound to http://ecommerce.example.org/schema
         for the "x" element and contents -->
</x>
暗恋未遂 2024-07-30 06:56:40

不,在 XML 文档中包含未使用的名称空间声明并不违法。

No, it is not illegal to have unused namespace declarations in an XML document.

橘味果▽酱 2024-07-30 06:56:40

W3C 实际上有一个验证器服务。 这通过两个警告进行验证:编码和缺少文档类型。

W3C actually has a validator service. This validates with two warnings, encoding and lack of a doctype.

往事随风而去 2024-07-30 06:56:40

虽然大多数清理工具都会删除未使用的名称空间,但我不记得 XML 规范上有任何内容表明保留它们是非法的。 我不知道有哪个 XML 解析器不接受这样的文档(而且有很多这样的文档)。

While most clean-up tools will remove unused namespaces I don't remember anything on XML spec saying it is illegal to keep them. And I don't know of any XML parser which won't accept such document (and there's a lot of such documents floating around).

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