我不明白为什么我无法解析这些数据:
<places yahoo:start="0" yahoo:count="1" yahoo:total="1" xmlns="http://where.yahooapis.com/v1/schema.rng" xmlns:yahoo="http://www.yahooapis.com/v1/base.rng">
<place yahoo:uri="http://where.yahooapis.com/v1/place/23424819" aaa:lang="en-US" xmlns:aaa="http://www.w3.org/XML/1998/namespace">
<woeid>23424819</woeid>
<placeTypeName code="12">Pays</placeTypeName>
<name>France</name>
<country type="Pays" code="FR" woeid="23424819">France</country>
<timezone type="Fuseau Horaire" woeid="28350911">Europe/Paris</timezone>
</place>
</places>
我想得到祸害(23424819) 这是完整的xml数据,抱歉这是&gt; places&gt;
的错误我试过了: ...
var xml:XML = new XML(e.currentTarget.data);
trace(xml); // => that is working it is print xml datas
trace (xml.places); // => nothing
trace (xml.place); // => nothing
trace (xml.place.woeid); // => nothing
trace (xml.place[0].woeid); // => nothing
如何获得woeid
?
答案 0 :(得分:1)
由于根节点节点声明了一个特定的命名空间,你需要告诉AS3在访问它之前使用该命名空间:
以下是一个例子:
//create a namespace that matches the namespace of the places node
var ns:Namespace = new Namespace("http://where.yahooapis.com/v1/schema.rng");
//tell AS3 to use this namespace as the default
default xml namespace = ns;
var xml:XML = <places yahoo:start="0" yahoo:count="1" yahoo:total="1" xmlns="http://where.yahooapis.com/v1/schema.rng" xmlns:yahoo="http://www.yahooapis.com/v1/base.rng">
<place yahoo:uri="http://where.yahooapis.com/v1/place/23424819" xml:lang="fr">
<woeid>23424819</woeid>
<placeTypeName code="12">Pays</placeTypeName>
<name>France</name>
<country type="Pays" code="FR" woeid="23424819">France</country>
<timezone type="Fuseau Horaire" woeid="28350911">Europe/Paris</timezone>
</place>
</places>;
//now everything you'd expect should work.
trace(xml.place[0].woeid);
如果您有很多名称空间,并且不想设置默认名称,那么您也可以这样做:
trace(xml.ns::place.ns::woeid);
如果您需要访问yahoo
命名空间中的某些内容(例如地点节点的uri),您可以执行以下操作:
var yNs:Namespace = new Namespace("http://www.yahooapis.com/v1/base.rng");
trace(xml.place.@yNs::uri);