tt.performance.getEntriesByPage收藏我的收藏
收藏
我的收藏获取当前缓冲区中页面路径为 [pagePath] 的性能数据。
语法
tt.performance.getEntriesByPage(pagePath)
参数
pagePath
类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
string | | 是 | 期望获取性能数据页面的 pagePath | 1.60.0 |
返回值
代码示例
const entries = tt.performance && tt.performance.getEntriesByPage("pages/index/index"); 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
无