有没有办法将相同的类型定义链接在一起?

发布于 2024-11-30 13:41:57 字数 655 浏览 0 评论 0原文

示例代码:

<xsd:element name="a">
    <xsd:simpleType>
        <xsd:restriction base="xsd:string">
            <xsd:pattern value="|(([1-9]|[12][0-9]|3[01])/([0-9]|1[12])/[0-9]{1,4})"/>
        </xsd:restriction>
    </xsd:simpleType>
</xsd:element>
<xsd:element name="b">
    <xsd:simpleType>
        <xsd:restriction base="xsd:string">
            <xsd:pattern value="|(([1-9]|[12][0-9]|3[01])/([0-9]|1[12])/[0-9]{1,4})"/>
        </xsd:restriction>
    </xsd:simpleType>
</xsd:element>

现在元素a和b的类型定义是相同的。有没有办法将这些类型“链接”在一起,这样我就不必重复输入?

example code:

<xsd:element name="a">
    <xsd:simpleType>
        <xsd:restriction base="xsd:string">
            <xsd:pattern value="|(([1-9]|[12][0-9]|3[01])/([0-9]|1[12])/[0-9]{1,4})"/>
        </xsd:restriction>
    </xsd:simpleType>
</xsd:element>
<xsd:element name="b">
    <xsd:simpleType>
        <xsd:restriction base="xsd:string">
            <xsd:pattern value="|(([1-9]|[12][0-9]|3[01])/([0-9]|1[12])/[0-9]{1,4})"/>
        </xsd:restriction>
    </xsd:simpleType>
</xsd:element>

Now the type definition of element a and b are the same. is there a way to "link" those types together so that i do not have to repeat the typing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抽个烟儿 2024-12-07 13:41:57

好的,我明白了。最简单的方法是创建一个命名类型:

<xsd:simpleType name="PatternType">
    <xsd:restriction base="xsd:string">
        <xsd:pattern value="|(([1-9]|[12][0-9]|3[01])/([0-9]|1[12])/[0-9]{1,4})" />
    </xsd:restriction>
</xsd:simpleType>

<xsd:element name="a" type="tns:PatternType" />
<xsd:element name="b" type="tns:PatternType" />

其中 tns 是架构目标命名空间的前缀

Ok, I see. The easiest way to go is to create a named type:

<xsd:simpleType name="PatternType">
    <xsd:restriction base="xsd:string">
        <xsd:pattern value="|(([1-9]|[12][0-9]|3[01])/([0-9]|1[12])/[0-9]{1,4})" />
    </xsd:restriction>
</xsd:simpleType>

<xsd:element name="a" type="tns:PatternType" />
<xsd:element name="b" type="tns:PatternType" />

where tns is a prefix for your schema target namespace

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文