微信小程序不支持console.time,请问有什么其他方法实现吗?

发布于 8 年前作者 min696580 次浏览最后编辑 8 年前来自 issues

微信小程序不支持console.time,请问有什么其他方法实现吗?我目前用

let firstTime = new Date().valueOf();

let secondTime = new Date().valueOf();

console.log(‘[’ + (secondTime - firstTime) + ‘]ms’);

来实现,发现误差极大,一个函数执行完要不是0要不是1.

1 回复
yangliu
yangliu1 楼6 年前

console.time(‘计时’)和console.timeEnd(‘计时’)一起使用