我有一个验证器说无效的 XML 字符串。错误发生在第 2 行字符 1。字符串都在同一层。它大约有一百次出现,<map>
并且地图具有各种属性。
<map attribute_1="thomas"></map>
<map attribute_1="thomas again"></map>
这就是整个字符串。但有人告诉我
Line 1: Can not find declaration of element 'map'.
Line 2: The markup in the document following the root element must be well-formed.
根据我在这个答案中读到的内容,我认为可能需要一个与孩子共享属性<map>
的父元素。name
我复制粘贴了结构,所以我最终得到了类似的东西
<element name="details">
<complexType>
<sequence>
<map name="details">
</map>
</sequence>
</complexType>
</element>
这只是在黑暗中的一个镜头,因为我对 XML 的经验是零。无论如何,它没有用。我的标记有什么问题?