我有以下示例xml输入。
<inputM xmlns="http://example.com">
<Title>test</Title>
<Gender>ffff</Gender>
<MiddleName>dere</MiddleName>
<Surname>qqq</Surname>
<PreferredName>ppp</PreferredName>
</inputM>
基于逻辑,我想生成一个JSON消息。为此,我在xslt下面使用了此方法。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:ns="http://example.com" xmlns:func="http://exslt.org/functions">
<xsl:output method="text" omit-xml-declaration="yes" indent="no" encoding="UTF-8" media-type="application/json"/>
<xsl:template match="ns:inputM">
<xsl:text>{"outputX": {</xsl:text>
<xsl:value-of select="ns:getChangedValue(//ns:inputM/ns:Title,'xxx','title')" />
<xsl:value-of select="ns:getChangedValue(//ns:inputM/ns:Gender,'yyy','gender')" />
<xsl:value-of select="ns:getChangedValue(//ns:inputM/ns:MiddleName,'zzz','middleName')" />
<xsl:value-of select="ns:getChangedValue(//ns:inputM/ns:Surname,'qqq','surname')" />
<xsl:value-of select="ns:getChangedValue(//ns:inputM/ns:PreferredName,'ppp','preferredName')" />
<xsl:text>}}</xsl:text>
</xsl:template>
<xsl:function name="ns:getChangedValue">
<xsl:param name="inputValue"/>
<xsl:param name="default"/>
<xsl:param name="jsonField"/>
<xsl:if test="$inputValue != $default">
<xsl:choose>
<xsl:when test="$inputValue = 'TEST'" >
<func:result>
<xsl:value-of select="concat('"',$jsonField,'": " removed')" />
<xsl:text>"</xsl:text>
<xsl:text>,</xsl:text>
</func:result>
</xsl:when>
<xsl:otherwise>
<func:result>
<xsl:value-of select="concat('"',$jsonField,'": "', $inputValue)" />
<xsl:text>"</xsl:text>
<xsl:text>,</xsl:text>
</func:result>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
</xsl:function>
</xsl:stylesheet>
生成的输出如下。
{"outputX": {"title": "test","gender": "ffff","middleName": "dere",}}
在输出消息中的最后一个元素之后总是有多余的“,”。有没有办法从单个xslt文件中避免这种情况
答案 0 :(得分:1)
您正在函数中输出逗号,但是显然函数不知道是否会出现以下值。
解决该问题的一种方法是更改函数,使其不添加逗号,并使用单个xsl:value-of
和separator
完成所有函数调用。
尝试使用此XSLT
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0" xmlns:ns="http://example.com" xmlns:func="http://exslt.org/functions">
<xsl:output method="text" omit-xml-declaration="yes" indent="no" encoding="UTF-8" media-type="application/json"/>
<xsl:template match="ns:inputM">
<xsl:text>{"outputX": {</xsl:text>
<xsl:value-of select="ns:getChangedValue(//ns:inputM/ns:Title,'xxx','title'),
ns:getChangedValue(//ns:inputM/ns:Gender,'yyy','gender'),
ns:getChangedValue(//ns:inputM/ns:MiddleName,'zzz','middleName'),
ns:getChangedValue(//ns:inputM/ns:Surname,'qqq','surname'),
ns:getChangedValue(//ns:inputM/ns:PreferredName,'ppp','preferredName')" separator=", " />
<xsl:text>}}</xsl:text>
</xsl:template>
<xsl:function name="ns:getChangedValue">
<xsl:param name="inputValue"/>
<xsl:param name="default"/>
<xsl:param name="jsonField"/>
<xsl:if test="$inputValue != $default">
<xsl:choose>
<xsl:when test="$inputValue = 'TEST'" >
<func:result>
<xsl:value-of select="concat('"',$jsonField,'": " removed')" />
<xsl:text>"</xsl:text>
</func:result>
</xsl:when>
<xsl:otherwise>
<func:result>
<xsl:value-of select="concat('"',$jsonField,'": "', $inputValue)" />
<xsl:text>"</xsl:text>
</func:result>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
</xsl:function>
</xsl:stylesheet>
请注意,您确实应该将XSLT的版本号更改为“ 2.0”。