0

我有一个结构如下的 XML,我想在 AS3 中获取货币属性,不管 SellTotosystem 标签,因为我每次都会有不同的标签。

<GCPRequest version="1" requestId="1234567890">
<SellTotoSystem  currency = "EUR">

</SellTotoSystem>

</GCPRequest>
4

1 回答 1

1

您可以使用以下示例之一:

    var xml:XML = <GCPRequest version="1" requestId="1234567890">
            <SellTotoSystem  currency = "EUR"></SellTotoSystem>
        </GCPRequest>;

    var currency:String; 
    //first child at the first level of tree
    currency = xml.*.@currency[0];
    trace(currency);

    //first encounted child at any level of tree
    currency = xml..@currency[0];
    trace(currency);

//output:
EUR
EUR 
于 2013-07-26T08:20:08.777 回答