1

私は XMLList を持っています。石の属性 == Opal を持つリストから 1 つを取得しようとしていますが、うまくいきません。なぜですか?

コードは次のとおりです。

var xml:XML = <bs><variation price="999999999.99" month="OCT" stone="Magic Pet Rock" image="https://www.sussexjewelers.com/birthstone_images/20_PE105-BT.png" style="PE105" gold_color="White" gold_carat="14"/>
<variation price="999999999.99" month="OCT" stone="Opal" image="https://www.sussexjewelers.com/birthstone_images/17_PE105-OP.png" style="PE105-OP" gold_color="Yellow" gold_carat="14"/>
<variation price="33212221.00" month="OCT" stone="Pink Tourmaline" image="https://www.sussexjewelers.com/birthstone_images/16_PE105-PT.png" style="PE105-PT" gold_color="Yellow" gold_carat="14"/></bs>;


var list:XMLList = xml.children();

trace(list) // returns all three variations

list = list.(@stone == 'Opal');

trace(list); // expecting to return the 2nd variation but actually returns nothing.

なぜこれが期待どおりに機能しないのか、誰にもわかりますか?

ありがとう。

4

1 に答える 1

2

私はそれを理解する直前にこの質問を投稿しました...トレースするときに toXMLString() を追加する必要があります。

trace(list.toXMLString());
于 2009-04-29T18:18:29.553 に答える