gpt4 book ai didi

api - Last.fm API 日期范围

转载 作者:行者123 更新时间:2023-12-05 00:10:03 24 4
gpt4 key购买 nike

我正在使用 Last.fm API 学习 API。我如何知道此示例代码中指定的日期是什么(chart from="1108296002")?

<weeklychartlist tag="rock">
<chart from="1108296002" to="1108900802"/>
<chart from="1108900801" to="1109505601"/>
...
</weeklychartlist>

我在这里得到了例子:http://www.last.fm/api/show/tag.getWeeklyChartList

最佳答案

实际上是 Unix 时间戳。根据您使用的语言/平台,将它们转换为实际日期应该非常简单或微不足道。这就是它在 JavaScript 中的实现方式,例如:

var from = new Date(1000 * 1108296002);
var to = new Date(1000 * 1108900802);

console.log(from.toUTCString());
// Sun, 13 Feb 2005 12:00:02 GMT

console.log(to.toUTCString());
// Sun, 20 Feb 2005 12:00:02 GMT

它是时间戳 * 1000,因为在 JavaScript 中 “...日期对象基于时间值,即自 1970 年 1 月 1 日 UTC 以来的毫秒数”

关于api - Last.fm API 日期范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19645706/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com