我对包含 xml 的 xsl 变量有要求。
<xsl:variable name="file" select="document('abc.xml')"/>
abc.xml 只不过是一些示例 xml<a>1<b>2</b>3</a>
现在我必须修改/添加变量 $file 的元素并将结果分配给另一个变量..
我的输入将是
<Service name="CBI" detailedLog="false">
<PolicyRules type="default">
<EndPoints>
<EndPoint source="Src" target="ET" serviceoperation="AV01">
<Url>http://firstbackend.com</Url>
</EndPoint>
<EndPoint source="Src" target="ET" serviceoperation="PV01">
<Url>http://secondbackend</Url>
</EndPoint>
</EndPoints>
</PolicyRules>
</Service>
我必须与 $file 一起获取标签..我需要以下输出..
<a>1<b>2</b>
<Url>http://firstbackend.com</Url>
<Url>http://secondbackend</Url>
3</a>
谁能帮帮我