Api
MethodTimestamptodate
OpenAPI > Method > timestampToDate
OpenAPI.Method.timestampToDate() method
时间戳转日期, 格式 1609459200。 支持获取特定时间
Signature:
static timestampToDate(data: number, data_type?: string): string | number | undefined;
Parameters
Parameter | Type | Description |
---|---|---|
data | number | 时间戳。输出格式 1970/01/01 00:00:00 |
data_type | string | (Optional) 【可选】获取时间类型 y、m、d、h、i、s。如 s = 获取时间戳中的秒 |
string | number | undefined
Example
const date = OpenAPI.Method.timestampToDate(1704038400000) // 返回 '2024/01/01 00:00:00'
const date = OpenAPI.Method.timestampToDate(1704038400000, 'y') // 返回 '2024'