我有以下xml
文件
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns:t="http://www.tibco.com/xmlns/ApplicationManagement"
name="test">
<content>
<on> false </on>
</content>
</application>
我想让xsl
修改xml
,以便:
如果标签存在同名,则覆盖该值。
如果不存在具有相同值的标记,则将其插入。
这是我的xsl
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:t="http://www.tibco.com/xmlns/ApplicationManagement"
xmlns="http://www.w3.org/1999/xhtml" version="1.0">
<xsl:output encoding="UTF-8" indent="yes" method="xml"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="content">
<xsl:copy>
<xsl:apply-templates/>
<xsl:if test="not(status)">
<status>new status </status>
</xsl:if>
<xsl:if test="on">
<on>new on value</on>
</xsl:if>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
我遇到问题<on>new on value</on>
,因为解决方案应该替换on
标记值,而是创建一个全新的
结果如下(没有顶部xml和应用程序标记):
<content>
<on> false </on>
<value> light </value>
<status xmlns="http://www.w3.org/1999/xhtml">new status
</status>
<on xmlns="http://www.w3.org/1999/xhtml">new on value
</on>
</content>
如何在同一模板中替换on标签?
答案 0 :(得分:2)
您可以使用模板匹配来匹配JavascriptExecutor je = (JavascriptExecutor) driver;
WebElement element = driver.findElement(By.xpath("--Path--"));
je.executeScript("arguments[0].scrollIntoView(true);",element);
element.click();
元素和<on>
元素(不是示例的一部分)。
<status>
<强>输出:强>
<xsl:template match="content"> <!-- remove <xsl:if...> from this template -->
<xsl:copy>
<xsl:apply-templates />
<xsl:if test="not(status)"> <!-- if <status> element does not exist, create one -->
<status>added new status </status>
</xsl:if>
<xsl:if test="not(on)"> <!-- if <on> element does not exist, create one -->
<on>added new on value</on>
</xsl:if>
</xsl:copy>
</xsl:template>
<xsl:template match="on[parent::content]"> <!-- replaces <on> elements with parent <content> -->
<on>new on value</on>
</xsl:template>
<xsl:template match="status[parent::content]"> <!-- replaces <status> elements with parent <content> -->
<status>new status </status>
</xsl:template>