gpt4 book ai didi

xsd - xs :anyAttributes is rejecting an attribute

转载 作者:行者123 更新时间:2023-12-03 18:42:51 25 4
gpt4 key购买 nike

在我的架构中,我有:

<xs:element name="html-script">
<xs:annotation>
<xs:documentation>Element used to specify pass-through Javascript</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:anyAttribute/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>

在一份文件中,我有:
<html-attributes target="_new"/>

当我验证时,我得到...

Validation error: cvc-complex-type.3.2.2: Attribute 'target' is not allowed to appear in element 'html-attributes'. at file:/Users/benson/x/btweb/web_2_0/./content/about-us/about-us.xml line 35 character 38



我错过了什么?

最佳答案

可能是错字?您的架构定义了元素 <html-script> 而您的文档使用 <html-attributes>

还可以尝试将 processContents 指令添加到您的 anyAttribute:

<xs:anyAttribute processContents="skip" />

或者
<xs:anyAttribute processContents="lax" />

关于xsd - xs :anyAttributes is rejecting an attribute,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5332603/

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