デフォルトの有効期限を表示したい xsl があります (現在 +1 か月)
これで現在の日付を表示できます (使用: xmlns:date="http://exslt.org/dates-and-times" extension-element-prefixes="date")
<xsl:variable name="currentdate" select="date:date()"/>
<!-- add one month to $currentdate-->
<xsl:value-of select="date:format-date($currentdate, 'MM/yy')"/>
私が抱えている問題は、現在の日付までの期間が見えないことです。誰もそれを行う方法を知っていますか?