xml 缺少命名空间

示例

在XML中,元素和属性名称位于名称空间中。

默认情况下,它们没有命名空间:

<?xml version="1.0"?>
<foo attr="value">
  <!-- the foo element is in no namespace, neither is the attr attribute -->
</foo>