伙计们,
我将 REXML 用于示例 XML 文件:
<Accounts title="This is the test title">
<Account name="frenchcustomer">
<username name = "frencu"/>
<password pw = "hello34"/>
<accountdn dn = "https://frenchcu.com/"/>
<exporttest name="basic">
<exportname name = "basicexport"/>
<exportterm term = "oldschool"/>
</exporttest>
</Account>
<Account name="britishcustomer">
<username name = "britishcu"/>
<password pw = "mellow34"/>
<accountdn dn = "https://britishcu.com/"/>
<exporttest name="existingsearch">
<exportname name = "largexpo"/>
<exportterm term = "greatschool"/>
</exporttest>
</Account>
</Accounts>
我正在阅读这样的 XML:
@data = (REXML::Document.new file).root
@dataarr = @@testdata.elements.to_a("//Account")
现在我想获取 frenchcustomer 的用户名,所以我尝试了这个:
@dataarr[@name=fenchcustomer].elements["username"].attributes["name"]
这失败了,我不想使用数组索引,例如
@dataarr[1].elements["username"].attributes["name"]
会起作用,但我不想那样做,这里有什么我缺少的吗。我想使用数组并使用帐户名获取法国用户的用户名。
非常感谢。