Javascript 中的站点地图上次修改日期
Sitemap lastmod date in Javascript
我需要 sitemap.xml 中 <lastmod></lastmod>
标签中显示的日期格式。我怎样才能做到这一点?
输出如下:
<lastmod>2016-01-21EEST18:01:18+03:00</lastmod>
其中 'EEST' 可能是时区偏移量。
我在php中看到了这个问题和答案:
Google Sitemap Date Format
但不知道如何在Javascript,
中实现
谢谢。
编辑:问题不重复,因为我需要 JavaScript 中的正确时间格式。
lastmod 标签使用YYYY-MM-DDThh:mmTZD
格式,其中TZD 是时区偏移量。 W3 date and time format 为您提供了 3 个如何执行 TZD 的选项:(Z 或 +hh:mm 或 -hh:mm)
这意味着在 javascript 中你可以只使用
const date = new Date().toISOString();
它看起来像 2017-11-15T11:18:17.266Z
,这对于站点地图 lastmod 是正确的。
我需要 sitemap.xml 中 <lastmod></lastmod>
标签中显示的日期格式。我怎样才能做到这一点?
输出如下:
<lastmod>2016-01-21EEST18:01:18+03:00</lastmod>
其中 'EEST' 可能是时区偏移量。
我在php中看到了这个问题和答案:
Google Sitemap Date Format
但不知道如何在Javascript,
中实现谢谢。
编辑:问题不重复,因为我需要 JavaScript 中的正确时间格式。
lastmod 标签使用YYYY-MM-DDThh:mmTZD
格式,其中TZD 是时区偏移量。 W3 date and time format 为您提供了 3 个如何执行 TZD 的选项:(Z 或 +hh:mm 或 -hh:mm)
这意味着在 javascript 中你可以只使用
const date = new Date().toISOString();
它看起来像 2017-11-15T11:18:17.266Z
,这对于站点地图 lastmod 是正确的。