XML模式文件中xs和xsd之间的区别?

前端之家收集整理的这篇文章主要介绍了XML模式文件中xs和xsd之间的区别?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
XML模式文件中的xs和xsd前缀之间有什么区别?
the XSD 1.0 spec on w3.org

The 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>

应该是等效的。

原文链接:https://www.f2er.com/xml/294018.html

猜你在找的XML相关文章