这是我的 XML 输入:
<maindocument>
<first>
<testing>random text</testing>
<checking>random test</checking>
</first>
<testing unit = "yes">
<tested>sample</tested>
<checking>welcome</checking>
<import task="yes">
<downloading>sampledata</downloading>
</import>
<import section="yes">
<downloading>valuable text</downloading>
</import>
<import chapter="yes">
<downloading>checkeddata</downloading>
</import>
</testing>
</maindocument>
输出应该是:首先,它将检查测试单元是否=“是”。如果是,则必须检查 section 属性 =“yes”。这是输出:
<maindocument>
<import>
<doctype>Valuable text</doctype>
</import>
</maindocument
我正在检查xsl:if
条件。首先,它将检查测试单元是否=“是”。然后它将检查导入部分是否=“是”。代码无法实现上述输出。