是否可以在xslt中获得唯一的长号?
我在一次翻译中访问过多次。
我尝试使用currentTimeStamp,但它没有用。
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs" xmlns:timeStamp="java.lang.System">
<xsl:template match="/">
<xsl:for-each select="Client">
<xsl:variable name="ClientPK1" select="concat('-',timeStamp:currentTimeMillis())"/>
<xsl:variable name="ClientPK2" select="concat('-',timeStamp:currentTimeMillis())"/>