如何在xsl中打印任何变量值。 bcoz我们无法调试xsl

时间:2018-08-28 13:11:58

标签: xslt xslt-2.0

<xsl:if test="efile_format = 'PDF' or efile_format = 'Docume`efile_format = 'PDF' or efile_format = 'Document' ">

我想检查efile_format的值。因为它在我尝试工作时总是会失败,但是尝试仅在查看条件时才关注该条件,无论条件是否在影响

<xsl:if test="1">

1 个答案:

答案 0 :(得分:0)

我假设您错过了第二个或条件:

<xsl:if test="efile_format = 'PDF' or efile_format = 'Docume`efile_format = 'PDF' or efile_format = 'Document' ">

正确的syntex可能是其中之一:

<xsl:if test="efile_format = 'PDF' or efile_format = 'Docume' or efile_format = 'PDF' or efile_format = 'Document' ">

OR

<xsl:if test="efile_format[(. = 'PDF') or (. = 'Document')]">

OR

<xsl:if test="efile_format=('PDF','Document')">