Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有这样的 XML 文件:
<?xml version='1.0' encoding='ISO-8859-1'?> <data> <tag1>Some information</tag1> <tag2/> </data>
我们只有标签结尾(在这种情况下tag2)是否很常见?这告诉我们没有存储信息tag2或者这是 XML 文件上的错误?
tag2
单独拥有</tag2>,没有前面的开头<tag2>,是一个错误。
</tag2>
<tag2>
你可以有一个空tag2的,但它是这样写的: <tag2 />
<tag2 />