0

我一直试图弄清楚如何显示具有特定属性的父节点的后代(在本例中为 exchangeRate 和 PlacesOfInterest)。

要设置场景 - 用户单击一个按钮,该按钮将字符串变量设置为目标,例如。日本或澳大利亚。

然后代码通过 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>
4

2 回答 2

0

您应该能够在 as3 中使用 E4X 轻松过滤节点:

 var destinations:XML = <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>;
//filter by attribute name
var filteredByLocation:XMLList = destinations.adventure.destination.(@location == "japan");
trace(filteredByLocation);
//filter by node value
var filteredByExchangeRate:XMLList = destinations.adventure.destination.(exchangeRate < 200);
trace(filteredByExchangeRate);

看看雅虎!devnet 文章Roger 的 E4X 文章了解更多详细信息。

相关的stackoverflow问题:

高温高压

于 2011-02-22T16:56:53.287 回答
0

如果您不知道后代的名称,或者您想选择具有相同属性值的不同后代,您可以使用:

destinations.descendants("*").elements().(attribute("location") == "japan");

例如:

var xmlData:XML = 
<xml>
    <firstTag>
        <firstSubTag>
            <firstSubSubTag significance="important">data_1</firstSubSubTag>
            <secondSubSubTag>data_2</secondSubSubTag>
        </firstSubTag>   
        <secondSubTag>
            <thirdSubSubTag>data_3</thirdSubSubTag>
            <fourthSubSubTag significance="important">data_4</fourthSubSubTag>
        </secondSubTag>
    </firstTag>
</xml>


trace(xmlData.descendants("*").elements().(attribute("significance") == "important"));

结果:

//<firstSubSubTag significance="important">data_1</firstSubSubTag>
//<fourthSubSubTag significance="important">data_4</fourthSubSubTag>
于 2016-07-06T12:19:08.540 回答