你正在訪問的內容是外部程式的映像位址,僅用於使用者加速訪問,本站無法保證其可靠性。當前的連結位址(單點即可複製)為 https://greasyfork.org.cn/zh-CN/scripts/451810-imagedownloaderlib/discussions/248481,源站連結 點此以跳轉

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;

发布留言

登录以发布留言。