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.
次のようにumbracoを使用してxsltファイルに1年後の日付を表示しようとしています:
<xsl:variable name="now" select="umbraco.library:CurrentDate()"/> <xsl:value-of select="umbraco.library:DateAdd($now, 'year', 1)"/>
value-of タグは今日の日付を出力します。DateAdd を取得して現在の日付に年を追加するにはどうすればよいですか?
定数「年」は間違っています。'y'だけを期待します。
<xsl:variable name="now" select="umbraco.library:CurrentDate()"/> <xsl:value-of select="umbraco.library:DateAdd($now, 'y', 1)"/>