如何将 Chrome cookie“expiration_time”转换为可读的日期/时间?

问题描述 投票:0回答:1

在 Google Chrome 的 cookie 上,时间戳值如下所示:

1765064691

我需要进行什么计算才能将此整数转换为人类可读的日期/时间?

google-chrome google-chrome-devtools
1个回答
0
投票
// Chrome expiration_time as unix timestamp
let timestamp = 1765064691;

// Convert to milli seconds
let readableDate = new Date(timestamp * 1000);

// Format date and time
console.log("UTC:", readableDate.toUTCString()); // UTC time
console.log("Lokal:", readableDate.toLocaleString()); // locale time
© www.soinside.com 2019 - 2024. All rights reserved.