SimpleType和Attribute的XML Schema?

前端之家收集整理的这篇文章主要介绍了SimpleType和Attribute的XML Schema?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试创建一个可以捕获 XMLXML模式,看起来像这样:
<tagname description="simple string type attribute">
false <!-- simple boolean type -->
</tagname>

但遇到困难.甚至可以定义一个模式来捕获这个或是我在snipe hunt

干得好
<xs:element name="tagname">
        <xs:complexType>
            <xs:simpleContent>
                <xs:extension base="xs:boolean">
                    <xs:attribute name="description" type="xs:string" use="required"/>
                </xs:extension>
            </xs:simpleContent>
        </xs:complexType>
    </xs:element>

这里是经过验证的样品

<tagname xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="file:/C:/Untitled2.xsd" description="123">
    true
</tagname>
原文链接:/xml/292833.html

猜你在找的XML相关文章