在 XML 文档中包含未使用的名称空间声明是否违法?
例如,根据 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
标准似乎没有表明其他情况。 第 7 节“文档的一致性”给出了一些要求,以便调用文档“命名空间格式良好”和“命名空间有效”,但没有说明不能有未使用的命名空间声明。
第 3 节给出了一个示例,其中包含未使用的命名空间:
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:
不,在 XML 文档中包含未使用的名称空间声明并不违法。
No, it is not illegal to have unused namespace declarations in an XML document.
W3C 实际上有一个验证器服务。 这通过两个警告进行验证:编码和缺少文档类型。
W3C actually has a validator service. This validates with two warnings, encoding and lack of a doctype.
虽然大多数清理工具都会删除未使用的名称空间,但我不记得 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).