如何将时间添加到模式事件类型
How to add time to schema event type
我的开始日期看起来像这样 03-03-2020 但我还需要添加时间。我检查了其他来源的一些示例模式并遇到了类似的事情:
2020-03-03T12:45:00+01:00
我有两个顾虑:
时间格式重要吗?我的格式是 dd-mm-YYYY。第二个示例格式不同。有任何问题吗?
如何正确地将时间添加到开始日期属性。时区的最后一个扩展名是 +03:00 还是您应该使用世界时区然后包括您的时区(时间偏移量)。
请帮忙说明一下。
I have two concerns: Does the time format matter? My format is
dd-mm-YYYY. The second example format is different. Is there any
problem having it either way?
如果您查看 startDate 属性 的描述,您将看到以下信息:
The start date and time of the item (in ISO 8601 date
format).
如果您遵循指定的 link,那么在维基百科文章中(在右侧面板中)您可以看到以下时间格式:
Date 2020-03-04
为了建立机器可读的格式,您可以使用 HTML 元素,例如 time with datetime。
======================================
How do you properly add the time time to the startDate property. Is
the last extension the TimeZone e.g +03:00 or should you use the
Universal Time zone then include your Timezone (Time offset).
用 time offset, e.g., if you are located in the Canadian province of Yukon 表示 ISO 格式的时间,然后您可以使用时区指示,例如 2020-03-04T05:16:15-08:00。
在瑞典,我有 Central European Time with a time offset of +1 hour and summertime +2 hours. So at the moment in Sweden, I can use a time format such as 2020-03-04T05:22:16+01:00. However, the Sweden summertime 格式,例如 2020-07-04T05:22:16+02: 00
我的开始日期看起来像这样 03-03-2020 但我还需要添加时间。我检查了其他来源的一些示例模式并遇到了类似的事情:
2020-03-03T12:45:00+01:00
我有两个顾虑: 时间格式重要吗?我的格式是 dd-mm-YYYY。第二个示例格式不同。有任何问题吗?
如何正确地将时间添加到开始日期属性。时区的最后一个扩展名是 +03:00 还是您应该使用世界时区然后包括您的时区(时间偏移量)。
请帮忙说明一下。
I have two concerns: Does the time format matter? My format is dd-mm-YYYY. The second example format is different. Is there any problem having it either way?
如果您查看 startDate 属性 的描述,您将看到以下信息:
The start date and time of the item (in ISO 8601 date format).
如果您遵循指定的 link,那么在维基百科文章中(在右侧面板中)您可以看到以下时间格式:
Date 2020-03-04
为了建立机器可读的格式,您可以使用 HTML 元素,例如 time with datetime。
======================================
How do you properly add the time time to the startDate property. Is the last extension the TimeZone e.g +03:00 or should you use the Universal Time zone then include your Timezone (Time offset).
用 time offset, e.g., if you are located in the Canadian province of Yukon 表示 ISO 格式的时间,然后您可以使用时区指示,例如 2020-03-04T05:16:15-08:00。 在瑞典,我有 Central European Time with a time offset of +1 hour and summertime +2 hours. So at the moment in Sweden, I can use a time format such as 2020-03-04T05:22:16+01:00. However, the Sweden summertime 格式,例如 2020-07-04T05:22:16+02: 00