使用 XLST 1.0,我需要使用“过滤掉我”或“也过滤掉我”来检索没有bb元素的aa元素。
<data>
<aa>
<bb>Filter me out</bb>
<bb>Some information</bb>
</aa>
<aa>
<bb>And filter me out too</bb>
<bb>Some more information</bb>
</aa>
<aa>
<bb>But, I need this information</bb>
<bb>And I need this information</bb>
</aa>
</data>
一旦我有了正确的aa元素,我将输出它的每个bb元素,如下所示:
<notes>
<note>But, I need this information</note>
<note>And I need this information</note>
</notes>
非常感谢。