1

由于某种原因,有时 的返回值xmlToList与输入明显不对应:

> library('XML')
> xmlToList(xmlTreeParse('<?xml version="1.0" encoding="UTF-8"?>
<a type="List of Filter(s)">
  <b topic="foo" id="1">
    <c topic="bar" id="2">
      <d topic="baz" id="3">
      </d>
    </c>
  </b>
</a>'))
[[1]]
[1] "baz"

[[2]]
[1] "3"

[[3]]
topic    id 
"bar"   "2" 

[[4]]
topic    id 
"foo"   "1" 

$.attrs
               type 
"List of Filter(s)" 

我的元素名称在哪里a.. d

为什么数据的顺序是相反的?

为什么与和d区别对待?bc

R 版本 3.0.1 (2013-05-16) -- “Good Sport” 包:XML 版本:3.98-1.1

4

0 回答 0