aldy120 / ptt-gossiping-daily

0 stars 0 forks source link

內文時區調整 #1

Closed aldy120 closed 3 months ago

aldy120 commented 3 months ago

顯示的時間錯誤。點進去內文看時間是 +0800 的才對。

1. [問卦] 笑死!男女參加聯誼的資格也差太多了吧? - 2024-03-20T20:58:57.000Z
https://www.ptt.cc/bbs/Gossiping/M.1710939539.A.02A.html

2024-03-20T20:58:57.000Z 應改為 2024-03-20T20:58:57.000+0800

aldy120 commented 3 months ago

採用格式化後的台北時間作為輸出。

const options = {
    timeZone: 'Asia/Taipei',
    timeStyle: 'long',
    dateStyle: 'full'
};
// The datetime returned from the API response is wrong
const wrongTime = article.datetime;
const correctTime = wrongTime.substring(0, wrongTime.length - 1) + '+0800';        
const timeTaipei = new Date(correctTime).toLocaleString('zh-TW', options);