ImageDownloaderLib

Image downloader for manga download scripts.

< 腳本ImageDownloaderLib的回應

提問/評論

§
發表於:2024-06-20
編輯:2024-06-20

JSZip下载的文件和文件夹默认使用UTC时间,在使用everything等软件筛选处理时会因为和所在时区的时间不同而有些麻烦。
建议在const zip = new JSZip();后添加以下代码,让下载的文件和文件夹都修正为所在时区的时间好点
const currDate = new Date();
const dateWithOffset = new Date(currDate.getTime() - currDate.getTimezoneOffset() * 60000);
// replace the default date with dateWithOffset
JSZip.defaults.date = dateWithOffset;

發表回覆

登入以回復

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址