使用Appcelerator从XML解析和提取数据

时间:2011-04-04 20:36:24

标签: xml appcelerator

Titanium SDK版本:1.6.1
iPhone SDK版本:4.2

我很难从Appcelerator中的XML输出中提取数据。我想获得令牌和用户名。这是怎么做到的?

<rsp stat="ok">
<auth>
<token>73257626300602415-3324a12587e2e9b3602</token>
<perms>delete</perms>
<user nsid="599323339@N047" username="theuser200" fullname="" />
</auth>
</rsp>

感谢所有输入。

2 个答案:

答案 0 :(得分:2)

假设您的xml来自am xhr请求。

xhr.onload = function() {
  var doc = this.responseXML.documentElement; // Give me a xml document.
  var token = doc.getElementsByTagName("token").item(0).text; // Get the token element, then the first item (could be lots of them) then the text of the first.
  var username = doc.getElementsByTagName("user").item(0).getAttribute("username"); // Ditto as above, but this time get the attribute name "username"
}

答案 1 :(得分:0)

您是否阅读过the API documentation

Titanium.XML从第506页开始

此外,this guide可能会有所帮助。