gpt4 book ai didi

xml - 如何允许 xml :lang attribute in XMLSchema?

转载 作者:数据小太阳 更新时间:2023-10-29 02:22:40 25 4
gpt4 key购买 nike

我想允许在我的 XMLSchema 的某些元素中使用 xml:lang 属性。但我找不到任何描述如何做到这一点的内容。

最佳答案

您必须进行一些搜索才能根据标准将其拼凑起来。这是您在 XML 元素上允许使用 xml:lang 属性所需的神奇调味料。

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<!-- Import xml: namespace -->
<xs:import namespace="http://www.w3.org/XML/1998/namespace"
schemaLocation="https://www.w3.org/2009/01/xml.xsd" />

<!-- ... --->

<xs:complexType name="myLanguagedElement">
<!-- ... -->

<!-- use ref="" instead of name="", here in your attribute -->
<xs:attribute ref="xml:lang" use="optional" /><!-- or "required" if you like -->
</xs:complexType>
</xs:schema>

编辑:新的 schemaLocation 更改为 https://www.w3.org/2009/01/xml.xsd

关于xml - 如何允许 xml :lang attribute in XMLSchema?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7502382/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com