Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 XSLT 的新手。就我而言,假设正在使用以下代码:
<xsl:when test="(abc/def == 9)"> N/A </xsl:when>
我必须使用==条件,但它会产生错误。仅接受 != 条件。请让我知道XSLT 中是否有任何关于等于条件检查的规定。
你试过了吗:
<xsl:when test="(abc/def = 9)">
XSLT 知道这里不会进行分配,因此将改为进行比较