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.
当我用28/12/12 08:51:51填充我的日期字段并生成 XML 文件时,我得到输出2028-12-12T08:51:51+00:00。在我的 XSD 文件中,该字段的类型设置为xs:dateTime.
xs:dateTime
问题是我只想要日期和时间,而不是时区。所以输出应该是2028-12-12T08:51:51
有人知道这种格式在哪里设置吗?
使用模式作为
YYYY-MM-DDThh:mm:ss
这样做: -
<xsd:simpleType> <xsd:restriction base="xsd:dateTime"> <xsd:pattern value="\d{4}-\d\d-\d\dT\d\d:\d\d:\d\d" /> </xsd:restriction> </xsd:simpleType>