XML模式文件中的xs和xsd前缀之间有什么区别?
从
the XSD 1.0 spec on w3.org:
原文链接:https://www.f2er.com/xml/294018.htmlThe XML representation of schema
components uses a vocabulary
identified by the namespace name
07001. For
brevity,the text and examples in this
specification use the prefix xs: to
stand for this namespace; in practice,
any prefix can be used.
在结束xs或xsd只是前缀。 XSD例如更多地由Microsoft模式使用。
重要的是如何声明命名空间。
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> ... </xs:schema>
要么
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ... </xsd:schema>
应该是等效的。