我对xslt一无所知,并且我要求根据xsl架构的if-else更改标签名称。
我想要获得标签价值'信用卡/电子支票'当提供者属性是' ProPayAPI'但我正在获得价值'信用卡'按照其他条件。现在,我无法理解我会改变什么或解决方案是什么?
XSLT代码如下......
false
我从数据库收到的xml是
<label for="pymt_option_cc" class="clsBodyText">
<xsl:choose>
<xsl:when test="/forms/pay_provider_btn/pay_assn_provider/@provider = 'ProPayAPI'">Credit Card / E-Check</xsl:when>
<xsl:otherwise>Credit Card</xsl:otherwise>
</xsl:choose>
</label>