我想为XML文档定义XSD架构,例如:
<?xml version="1.0" encoding="utf-8"?>
<view xmlns="http://localhost/model_data" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://localhost/model_data XMLSchemaView.xsd" path="wibble" id="wibble">
<text name="PageTitle">Homepage</text>
<text name="Keywords">home foo bar</text>
<image name="MainImage">
<description>lolem ipsum</description>
<title>i haz it</title>
<url>/images/main-image.jpg</url>
<type>image/jpeg</type>
<alt>alt text for image</alt>
<width>400</width>
<height>300</height>
</image>
<link name="TermsAndConditionsLink">
<url>/tnc.html</url>
<title>Terms and Conditions</title>
<target>_blank</target>
</link>
</view>
有一个视图根元素,然后是一个未知数量的字段元素(各种类型)。我正在使用以下XSD架构:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://localhost/model_data" targetNamespace="http://localhost/model_data" id="XMLSchema1">
<xs:element name="view" type="model_data"/>
<xs:complexType name="model_data">
<xs:choice maxOccurs="unbounded">
<xs:element name="text" type="text_field"/>
<xs:element name="image" type="image_field"/>
<xs:element name="link" type="link_field"/>
</xs:choice>
<xs:attribute name="path" type="xs:string"/>
<xs:attribute name="id" type="xs:string"/>
</xs:complexType>
<xs:complexType name="image_field">
<xs:all>
<xs:element name="description" type="xs:string"/>
<xs:element name="title" type="xs:string"/>
<xs:element name="type" type="xs:string"/>
<xs:element name="url" type="xs:string"/>
<xs:element name="alt" type="xs:string"/>
<xs:element name="height" type="xs:int"/>
<xs:element name="width" type="xs:int"/>
</xs:all>
<xs:attribute name="name" type="xs:string"/>
</xs:complexType>
<xs:complexType name="text_field">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="name" type="xs:string"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="link_field">
<xs:all>
<xs:element name="target" type="xs:string"/>
<xs:element name="title" type="xs:string"/>
<xs:element name="url" type="xs:string"/>
</xs:all>
<xs:attribute name="name" type="xs:string"/>
</xs:complexType>
</xs:schema>
这看起来应该对我有用,但它没有,我总是得到以下错误:
Element <text> is not allowed under element <view>.
Reason: The following elements are expected at this location (see below)
<text>
<image>
<link>
Error location: view / text
Details
cvc-model-group: Element <text> unexpected by type 'model_data' of element <view>.
cvc-elt.5.2.1: The element <view> is not valid with respect to the actual type definition 'model_data'.
我之前从未真正使用过XSD架构,所以如果有人能指出我出错的地方,我真的很感激。
答案 0 :(得分:3)
更新:
我想我发现了问题 - 这是这里的陈述:
<view
xmlns="http://localhost/model_data"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
==> xsi:schemaLocation="http://localhost/model_data XMLSchemaView.xsd" <====
path="wibble" id="wibble">
你似乎在这里引用你的localhost机器上的一个位置,引用一个XSD文件 - 那真的存在吗???
如果我从XML中删除那一行,一切都会正常验证。
这是另一个测试中剩下的吗?
答案 1 :(得分:0)
你有像'text'这样的名字的乘法(在'model_data'下面,也在模式下)。 只需改变其中一个。