XML元素与DTD不匹配

问题描述 投票:0回答:1

请考虑以下代码段-

DTD

<!DOCTYPE hotels_list [
    <!ELEMENT hotels_list ( hotel+ ) >
    <!ELEMENT hotel ( id, name, stars, Facilities, Address, distance_from_center, available ) >
    <!ELEMENT id ( #PCDATA ) >
    <!ELEMENT name ( #PCDATA ) >
    <!ELEMENT stars ( #PCDATA ) >
    <!ELEMENT Address ( #PCDATA ) >
    <!-- Facilities only contains at least one of the options in (internet,gym,restaurant,parking,pickup -->
    <!ELEMENT Facilities (Internet*,Gym*,Restaurant*,Parking*,Pickup*) >
    <!ELEMENT available ( #PCDATA ) >
    <!ELEMENT distance_from_center ( #PCDATA ) >
    ]>

XML代码

<hotels_list>
    <hotel>
        <id>1</id>
        <name>Les Jardins Du Marais</name>
        <stars>3</stars>
        <Facilities>Internet</Facilities>
        <Address>74 rue Amelot, Paris, 75011</Address>
        <distance_from_center>2</distance_from_center>
        <available>True</available>
    </hotel>
    <hotel>
        <id>2</id>
        <name>Golden Tulip Little Palace</name>
        <stars>4</stars>
        <Facilities>Internet,Gym,Parking,Restaurant</Facilities>
        <Address>4 rue Salomon
        De Caus, Paris 75003</Address>
        <distance_from_center>0.1</distance_from_center>
        <available>False</available>
    </hotel>
</hotels_list>

但是设施显示错误为

The content of element type "Facilities" must match "(Internet*,Gym*,Restaurant*,Parking*,Pickup*)".xml(MSG_CONTENT_INVALID)

我在这里缺少什么吗,有人可以帮忙吗?

感谢您的帮助。

xml dtd
1个回答
1
投票

Facilities是元素列表,而不是文本内容的正则表达式。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hotels_list [
    <!ELEMENT hotels_list (hotel+)>
    <!ELEMENT hotel (id, name, stars, Facilities, Address, distance_from_center, available)>
    <!ELEMENT id (#PCDATA)>
    <!ELEMENT name (#PCDATA)>
    <!ELEMENT stars (#PCDATA)>
    <!ELEMENT Address (#PCDATA)>
    <!-- Facilities only contains at least one of the options in (internet,gym,restaurant,parking,pickup -->
    <!ELEMENT Facilities (Internet*, Gym*, Restaurant*, Parking*, Pickup*)>
    <!ELEMENT Internet (#PCDATA)>
    <!ELEMENT Gym (#PCDATA)>
    <!ELEMENT Restaurant (#PCDATA)>
    <!ELEMENT Parking (#PCDATA)>
    <!ELEMENT Pickup (#PCDATA)>
    <!ELEMENT available (#PCDATA)>
    <!ELEMENT distance_from_center (#PCDATA)>
]>
<hotels_list>
    <hotel>
        <id>1</id>
        <name>Les Jardins Du Marais</name>
        <stars>3</stars>
        <Facilities><Internet/></Facilities>
        <Address>74 rue Amelot, Paris, 75011</Address>
        <distance_from_center>2</distance_from_center>
        <available>True</available>
    </hotel>
    <hotel>
        <id>2</id>
        <name>Golden Tulip Little Palace</name>
        <stars>4</stars>
        <Facilities><Internet/><Gym/><Restaurant/><Parking/></Facilities>
        <Address>4 rue Salomon
        De Caus, Paris 75003</Address>
        <distance_from_center>0.1</distance_from_center>
        <available>False</available>
    </hotel>
</hotels_list>
© www.soinside.com 2019 - 2024. All rights reserved.