我在XSLT中有一个名为variable_name
的变量,我试图设置为1
,如果有问题的产品具有名称为A或B或A& A的属性。乙
<xsl:variable name="variable_name">
<xsl:for-each select="product/attributes">
<xsl:if test="@attributename='A' or @attributename='B'">
<xsl:value-of select="1"/>
</xsl:if>
</xsl:for-each>
</xsl:variable>
有没有办法使用if语句匹配多个字符串,因为如果存在A或存在B,我的匹配就是匹配。如果A&amp; B存在,它没有将变量设置为1.任何对此的帮助都将受到赞赏,因为我是XSLT中的新手。
答案 0 :(得分:14)
您可以使用xsl:choose语句,它类似于常见编程语言中的切换:
示例:
<xsl:variable name="variable_name">
<xsl:for-each select="product/attributes">
<xsl:choose>
<xsl:when test="@attributename='A'">
1
</xsl:when>
<xsl:when test=" @attributename='B'">
1
</xsl:when>
<!--... add other options here-->
<xsl:otherwise>1</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:variable>
这将设置名为variable_name的新变量,其属性为product / attributes。
了解更多信息...... http://www.w3schools.comwww.w3schools.com/xsl/el_choose.asp
编辑:另一种方式(有点脏)OP的请求:<xsl:variable name="variable_name">
<xsl:for-each select="product/attributes">
<xsl:if test="contains(text(), 'A') or contains(text(), 'B')">
1
</xsl:if>
</xsl:for-each>
</xsl:variable>
如果你提供xml你正在编写xslt的xml,将会很有帮助。
答案 1 :(得分:0)
这可能没有用......
具有两个具有相同名称的XML元素属性(例如。<element x="1" x="2" />
)是否“合法”?
这是你想要处理的吗?尝试通过xmllint或类似的东西解析XML文件,看看它是否有效。
xmllint --valid the-xml-file.xml
我的猜测是你会得到'属性重新定义'错误。