一直在尝试格式化文本以在从 XML 拉到 XSLT 1.0 时显示为 DD-MM-YYYY,因为我知道在使用我所拥有的 xs:date 时它必须在 XSD/XML 中布置为 YYYY-MM-DD用过的。
这是我正在处理的代码,关于我应该如何显示它的任何建议?
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
<events xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="events.xsd">
<venue id="01"
vtitle="ExCeL Exhibition Centre"
location="London"
telephone="0844 448 7600">
<event name="Doctor Who 50th Celebration" date="2013-10-22">
<image>images/doctor50.jpg</image><attribute>Doctor Who Event</attribute>
<description>A 50th Anniversary musical bonanza for Doctor Who.</description>
<ticket_price type="adult" status="available">£25.00</ticket_price>
<ticket_price type="child" status="none">£11.00</ticket_price>
<ticket_price type="junior" status="available">£0.00</ticket_price>
<email>info@roundhouselondon.com</email>
</event>
</venue>
XSD
<xs:attribute name="date" type="xs:date"/>
XSLT
<xsl:element name="date"><xsl:value-of select="@date"/></xsl:element>
HTML
<date>2013-10-22</date>