下面是实际的xml:
<?xml version="1.0" encoding="utf-8"?> <employee> <Name>ABC</Name> <Dept>CS</Dept> <Designation>sse</Designation> </employee>
我想要输出如下:
<?xml version="1.0" encoding="utf-8"?> <employee> <Name>ABC</Name> <Age>34</Age> <Dept>CS</Dept> <Domain>Insurance</Domain> <Designation>sse</Designation> </employee>
是否可以在使用xslt之间添加XML元素?
请给我样品!
这是一个XSLT 1.0样式表,可以执行您的要求:
原文链接:https://www.f2er.com/xml/293150.html<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <!-- Identity transform --> <xsl:template match="@* | node()"> <xsl:copy> <xsl:apply-templates select="@* | node()"/> </xsl:copy> </xsl:template> <xsl:template match="Name"> <xsl:copy-of select="."/> <Age>34</Age> </xsl:template> <xsl:template match="Dept"> <xsl:copy-of select="."/> <Domain>Insurance</Domain> </xsl:template> </xsl:stylesheet>
显然,逻辑将根据您从哪里获取新数据以及需要去哪里而变化。上面的样式表只是插入一个< Age>每个< Name>之后的元素元素和<域>每个< Dept>之后的元素元件。
(限制:如果您的文档可以在其他< Name>或< Dept>元素中包含< Name>或< Dept>元素,则只有最外层的元素才会进行此特殊处理。我不认为您打算使用文档有这种递归结构,所以它不会影响你,但值得一提的是以防万一。)