Как получить все узлы XML по имени? - PullRequest
2 голосов
/ 15 мая 2019

У меня есть входной XML-код, подобный этому -

<parent>
    <child type="reference">
        <grandChild name="aaa" action="None">
            <Attribute name="xxx">1</Attribute>
            <grandChild name="bbb" action="None">
                <Attribute name="xxx">1</Attribute>
            </grandChild>
            <grandChild name="aaa" action="None">
                <Attribute name="xxx">2</Attribute>
            </grandChild>
        </grandChild>
        <grandChild name="ddd" action="None">
                <Attribute name="xxx">1</Attribute>
                <grandChild name="aaa" action="None">
                    <Attribute name="xxx">3</Attribute>
                </grandChild>
        </grandChild>
    </child>
</parent>

, и я хочу получить все узлы grandChild, объединяющиеся по их имени. Например, если я хочу получить payload.parent.child.*grandChild filter($.@name == 'aaa'), я должен получить список массивов с 3ноды grandChild.Есть ли способ добиться этого?

Спасибо за помощь.

Вывод -

<grandChilds>
    <grandChild name="aaa" action="None">
        <Attribute name="xxx">1</Attribute>
    </grandChild>
    <grandChild name="aaa" action="None">
        <Attribute name="xxx">2</Attribute>
    </grandChild>
    <grandChild name="aaa" action="None">
        <Attribute name="xxx">3</Attribute>
    </grandChild>
</grandChilds>

1 Ответ

4 голосов
/ 15 мая 2019

Возвращает требуемый вывод, используя селектор .. * для извлечения всех дочерних элементов и перестройки структуры вывода:

%dw 2.0
output application/xml
---

grandChilds:{
    ( payload.parent..*grandChild filter($.@name == 'aaa') map(gc) ->{

    grandChild @(name: gc.@name, action: gc.@action): {
        Attribute @(name: gc.Attribute.@name): gc.Attribute
    }

})

}

Выходы:

<?xml version='1.0' encoding='UTF-8'?>
<grandChilds>
  <grandChild name="aaa" action="None">
    <Attribute name="xxx">1</Attribute>
  </grandChild>
  <grandChild name="aaa" action="None">
    <Attribute name="xxx">2</Attribute>
  </grandChild>
  <grandChild name="aaa" action="None">
    <Attribute name="xxx">3</Attribute>
  </grandChild>
</grandChilds>

enter image description here

...