tt.performance.getEntries收藏我的收藏
收藏
我的收藏该方法返回当前缓冲区中的所有性能数据。
语法
tt.performance.getEntries()
参数说明
无
返回值
代码示例
const entries = tt.performance && tt.performance.getEntries(); for (let i = 0, len = entries.length; i < len; i++) { console.log("entry name: " + entries[i].name); console.log("entry entryType: " + entries[i].entryType); console.log("entry startTime: " + entries[i].startTime); console.log("entry duration: " + entries[i].duration); }
Bug & Tip
无