作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在实现 PerformanceObserver 来跟踪“first-paint”和“first-contentful-paint”。
const observer = new PerformanceObserver((list) => {
for (const entry of list.getEntries()) {
if (typeof(Storage) !== 'undefined') {
if (entry.name === 'first-paint') {
localStorage.setItem(rumMetrics.RUM_METRICS_FIRST_PAINT, entry.startTime);
}
else if (entry.name === 'first-contentful-paint') {
localStorage.setItem(rumMetrics.RUM_METRICS_FIRST_CONTENTFUL_PAINT, entry.startTime);
}
}
else {
console.log('local storage is not supported here. RUM metrics won\'t be recorded.');
}
}
});
observer.observe({ entryTypes: ['paint'] });
这在 Chrome 中完美运行,但在 Firefox 中会引发错误。
TypeError: The expression cannot be converted to return the specified type. (line: observer.observe({ entryTypes: ['paint'] });)
最佳答案
更新 1:2018 年 4 月 20 日
Mozilla 已确认该错误,并且它也影响 FF61 Nightly
原始答案
确认即使在开发者版本中这也是一个错误。
下面是相同的错误
关于PerformanceObserver 在 Firefox 中抛出错误,在 Chrome 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49790138/
我一直在使用PerformanceObserver测量网络请求的时间。虽然它看起来相当有效,但我发现了一些问题: 如果网络请求被服务器重定向(基本上服务器将响应头返回为 Location: "same
PerformanceObserver [1]界面用于显示网络性能指标,例如 First Paint (FP) 和 First Contextual Paint (FCP)。目前处于“候选推荐状态”。
我正在实现 PerformanceObserver 来跟踪“first-paint”和“first-contentful-paint”。 const observer = new Performanc
我是一名优秀的程序员,十分优秀!