xml – 有什么区别?

前端之家收集整理的这篇文章主要介绍了xml – 有什么区别?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你知道这些标签在XML / XSD上有什么区别吗?
<a_element /> and <a_element xsi:nil="true"/>

例如:

<SpreadCurve>
      <Index>3M</Index>
      <IndexNumber>4587</IndexNumber>
      <BusinessArea xsi:nil="true" />
</SpreadCurve>

and

<SpreadCurve>
      <Index>3M</Index>
      <IndexNumber>4587</IndexNumber>
      <BusinessArea />
</SpreadCurve>

这些相当吗?

如果我有一个XSD元素:

<xsd:element name="BusinessArea" type="xsd:string"/>

这意味着它是默认的xsi:nil =“false”。这意味着它不会接受这个元素的空值。

我的怀疑是,会接受这个吗?

<BusinessArea />

这对XSD是什么意思?

最好的祝福

你得到这个,因为你的XSD BusinessArea应该被定义为nillable =“true”。就像是:
<xsd:element name="BusinessArea" nillable="true">
.....
</xsd:element>

这意味着BusinessArea元素可以具有空值,即空值。

如果XML中的元素不包含任何值,那么它必须具有属性xsi:nil =“true”:

<BusinessArea xsi:nil="true" />

这应该是无效的:

<BusinessArea />

你所展示的两个例子不应该是等同的。

检查出来了解xsi:nil和nillable:

http://www.zvon.org/xxl/XMLSchemaTutorial/Output/ser_over_st0.html

http://www.w3.org/TR/xmlschema-0/#Nils

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

猜你在找的XML相关文章