Page 1 of 1

时间拓展工具中dateToTimer转换错误问题

Posted: 2023年 May 30日 09:34
by soundpool

在使用时间拓展工具api(dateToTimer)时,转换出现错误,时间字符串‘20230301’和‘20230201’通过此API转换成秒后都是1677600000,代码及打印如截图


Re: 时间拓展工具中dateToTimer转换错误问题

Posted: 2023年 May 31日 15:51
by lshinylee

感谢反馈!我们看一下代码逻辑


Re: 时间拓展工具中dateToTimer转换错误问题

Posted: 2023年 Jun 7日 10:28
by lshinylee

你好尝试通过以下方式调用,测试了下代码逻辑是不存在问题的。

const d1 = utils.dateToTimer('20230301');
const d2 = utils.dateToTimer('20230201');

console.log('d1', d1); // d1 1677600000
console.log('d2', d2); // d2 1675180800