Performance
基础库 2.11.0 开始支持,低版本需做兼容处理。
Performance 对象,用于获取性能数据及创建性能监听器
方法
Array. Performance.getEntries()
该方法返回当前缓冲区中的所有性能数据
Array. Performance.getEntriesByType(string entryType)
获取当前缓冲区中所有类型为 [entryType] 的性能数据
Array. Performance.getEntriesByName(string name, string entryType)
获取当前缓冲区中所有名称为 [name] 且类型为 [entryType] 的性能数据
PerformanceObserver Performance.createObserver(function callback)
创建全局性能事件监听器
Performance.setBufferSize(number size)
设置缓冲区大小,默认缓冲 30 条性能数据
标签:string,性能,缓冲区,Performance,Array,entryType From: https://www.cnblogs.com/AtlasLapetos/p/18628016