XML 属性
XML 元素可以有属性,就像 HTML 一样。
属性旨在包含与特定元素相关的数据。
XML 属性必须用引号括起来
属性值必须始终用引号括起来。可以使用单引号或双引号。
对于一个人的性别,<person> 元素可以这样写
<person gender="female">
或者这样
<person gender='female'>
如果属性值本身包含双引号,可以使用单引号,例如在这个示例中
<gangster name='George "Shotgun" Ziegler'>
或者可以使用字符实体
<gangster name="George "Shotgun" Ziegler">
XML 元素 vs 属性
看看这两个示例
<person gender="female">
<firstname>Anna</firstname>
<lastname>Smith</lastname>
</person>
<person>
<gender>female</gender>
<firstname>Anna</firstname>
<lastname>Smith</lastname>
</person>
在第一个示例中,gender 是一个属性。在最后一个示例中,gender 是一个元素。两个示例都提供相同的信息。
在 XML 中没有关于何时使用属性或何时使用元素的规则。
我喜欢的用法
以下三个 XML 文档包含完全相同的信息
在第一个示例中使用了一个 date 属性
<note date="2008-01-10">
<to>Tove</to>
<from>Jani</from>
</note>
在第二个示例中使用了一个 <date> 元素
<note>
<date>2008-01-10</date>
<to>Tove</to>
<from>Jani</from>
</note>
在第三个示例中使用了一个扩展的 <date> 元素:(这是我最喜欢的)
<note>
<date>
<year>2008</year>
<month>01</month>
<day>10</day>
</date>
<to>Tove</to>
<from>Jani</from>
</note>
避免使用 XML 属性?
在使用属性时需要考虑一些事情
- 属性不能包含多个值(元素可以)
- 属性不能包含树结构(元素可以)
- 属性不容易扩展(用于未来的更改)
不要像这样结束
<note day="10" month="01" year="2008"
to="Tove" from="Jani" heading="Reminder"
body="Don't forget me this weekend!">
</note>
XML 属性用于元数据
有时会为元素分配 ID 引用。这些 ID 可以用来识别 XML 元素,就像 HTML 中的 id 属性一样。这个示例展示了这一点
<messages>
<note id="501">
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<note id="502">
<to>Jani</to>
<from>Tove</from>
<heading>Re: Reminder</heading>
<body>I will not</body>
</note>
</messages>
上面的 id 属性用于识别不同的 note。它不是 note 本身的一部分。
我想说的是,元数据(关于数据的数据)应该存储为属性,数据本身应该存储为元素。