私は親ノードの子孫(この場合はexchangeRateとPlacesOfInterest)を特定の属性で表示する方法を理解しようとしています。AS3に特定の属性を持つノードのXML子孫を表示するにはどうすればよいですか?
シーンを設定する - ユーザーが文字列変数を目的地に設定するボタンをクリックします。日本またはオーストラリア。
コードはその後、XML内のノードのセットと一致する属性を持つ任意のトレースされて実行されます- 私は把握することはできませんどのような
は、その後の子ノードのみを表示する方法で十分に単純その属性を持つノード。
私はそれを行う方法があると確信していると私はそれを見つけると、おそらく私の頭を机の上に打つだろうが、どんな助けも大いに感謝される!
public function ParseDestinations(destinationInput:XML):void
{
var destAttributes:XMLList = destinationInput.adventure.destination.attributes();
for each (var destLocation:XML in destAttributes)
{
if (destLocation == destName){
trace(destLocation);
trace(destinationInput.adventure.destination.exchangeRate.text());
}
}
}
<destinations>
<adventure>
<destination location="japan">
<exchangeRate>400</exchangeRate>
<placesOfInterest>Samurai History</placesOfInterest>
</destination>
<destination location="australia">
<exchangeRate>140</exchangeRate>
<placesOfInterest>Surf and BBQ</placesOfInterest>
</destination>
</adventure>
</destinations>
ありがとうジョージ!それは私を助けてくれました!私はそれを行う簡単な方法がなければならないことを知っていた - 私は間違いなくそれらの記事を読んでいる –