在XSLT中使用XSLT和XPath的if / then / else的正确语法是什么?
我有以下XSLT,我想将updateType
字段的值设置为update
或insert
,具体取决于PhoneID
是否存在值。如果PhoneID
存在,那么updateType
需要设置为update
,否则需要设置为insert
。
这是我到目前为止所做的:
<xsl:for-each select="//ContactPhones">
<xsl:if test="flt:Preferred/text()='true'">
<Result field="txtPhoneID">
<Value>
<xsl:value-of select="PhoneID"/>
</Value>
</Result>
</xsl:if>
</xsl:for-each>
<Result field="updateType">
<Value>
<xsl:choose>
<xsl:when test="string(txtPhoneID)">update</xsl:when>
<xsl:otherwise>insert</xsl:otherwise>
</xsl:choose>
</Value>
</Result>
我该怎么做 - xml输入如下:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<FWTIndividual xmlns="http://www.test.com/wsdl/FLTypes">
<ContactPhones xmlns="">
<PhoneID>101000047723</PhoneID>
<Number>01923 2531345</Number>
<DeviceType>telephone</DeviceType>
<ns1:Usage xmlns:ns1="http://www.test.com/wsdl/FLTypes">home</ns1:Usage>
<ns2:Preferred xmlns:ns2="http://www.test.com/wsdl/FLTypes">true</ns2:Preferred>
</ContactPhones>
</FWTIndividual>
我认为以下可能是一个解决方案
<Result field="updateType">
<Value>
<xsl:choose>
<xsl:when test="ContactPhones[flt:Preferred='true']">update</xsl:when>
<xsl:otherwise>insert</xsl:otherwise>
</xsl:choose>
</Value>
答案 0 :(得分:3)
假设PhoneID
元素始终存在于输入ContactPhones
中但可以为空,您可以使用:
XSLT 1.0
<Result field="updateType">
<Value>
<xsl:choose>
<xsl:when test="string(PhoneID)">update</xsl:when>
<xsl:otherwise>insert</xsl:otherwise>
</xsl:choose>
</Value>
</Result>
XSLT 2.0
<Result field="updateType">
<Value>
<xsl:value-of select="if (string(PhoneID)) then 'update' else 'insert'" />
</Value>
</Result>
否则之前给出的另外两个答案就可以了。
-
注意:
而不是:
<xsl:for-each select="//ContactPhones">
<xsl:if test="flt:Preferred/text()='true'">
考虑:
<xsl:template match="ContactPhones[flt:Preferred='true']">
XML输入
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<FWTIndividual xmlns="http://www.test.com/wsdl/FLTypes">
<ContactPhones xmlns="">
<PhoneID>123</PhoneID>
<Number>01923 2531345</Number>
</ContactPhones>
<ContactPhones xmlns="">
<PhoneID/>
<Number>01923 2531345</Number>
</ContactPhones>
<ContactPhones xmlns="">
<Number>01923 2531345</Number>
</ContactPhones>
</FWTIndividual>
</soapenv:Body>
</soapenv:Envelope>
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<root>
<xsl:for-each select="//ContactPhones">
<Result field="updateType">
<Value>
<xsl:choose>
<xsl:when test="string(PhoneID)">update</xsl:when>
<xsl:otherwise>insert</xsl:otherwise>
</xsl:choose>
</Value>
</Result>
</xsl:for-each>
</root>
</xsl:template>
</xsl:stylesheet>
<强>结果强>
<?xml version="1.0" encoding="UTF-8"?>
<root>
<Result field="updateType">
<Value>update</Value>
</Result>
<Result field="updateType">
<Value>insert</Value>
</Result>
<Result field="updateType">
<Value>insert</Value>
</Result>
</root>
正如您所看到的,结果是“插入”两者这些情况:
PhoneID
为空; PhoneID
缺失。答案 1 :(得分:2)
由于您在询问XQuery,我假设您可以使用XPath 2.0。使用XPath 2.0,您可以简单地执行
<Value>
<xsl:value-of select="if (PhoneID) then 'insert' else 'update'"/>
</Value>
而不是相当冗长的xsl:choose
(如果你只能使用XSLT和XPath 1.0,那就是你会使用的。)