xslt umbraco.library:FormatDateTime 和 /(斜杠)的使用

发布于 2024-08-21 18:44:07 字数 463 浏览 10 评论 0原文

这可能不是一个真正的 XSLT 问题,而更像是一个 Umbraco 问题。

编写的这个函数将输出另一种格式,如expexted:

<xsl:value-of select="umbraco.library:FormatDateTime(data [@alias = 'kursusgangTilmeldingsfrist'], 'dd/MM/yyyy')"/>

当在当前日期使用这三个“第二个参数”调用时

'dd MM yyyy'
'dd-MM-yyyy'
'dd/MM/yyyy'

,输出将是:

10 02 2009
10-02-2009
10-02-2009 (and this should have been with "/" and not a "-")

Br。安德斯

This may not be a real XSLT question but more of an Umbraco question.

This function as written will output another format as expexted:

<xsl:value-of select="umbraco.library:FormatDateTime(data [@alias = 'kursusgangTilmeldingsfrist'], 'dd/MM/yyyy')"/>

When called with these three "second arguments" on the current date

'dd MM yyyy'
'dd-MM-yyyy'
'dd/MM/yyyy'

Then output will be:

10 02 2009
10-02-2009
10-02-2009 (and this should have been with "/" and not a "-")

Br. Anders

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

春花秋月 2024-08-28 18:44:07

解决方案是使用反斜杠进行转义,因此可以像这样调用函数:

<xsl:value-of select="umbraco.library:FormatDateTime(data [@alias = 'kursusgangTilmeldingsfrist'], 'dd\/MM\/yyyy')"/>

这将输出正确的日期:

10/02/2009

Solution is to escape using a backslash so function is called like this:

<xsl:value-of select="umbraco.library:FormatDateTime(data [@alias = 'kursusgangTilmeldingsfrist'], 'dd\/MM\/yyyy')"/>

And this will output correct date as:

10/02/2009
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文