ReferenceError: performance is not defined when using performance.now()(ReferenceError:使用 performance.now() 时未定义性能)
问题描述
我在尝试使用 ReferenceError: performance is not definedPerformance/now" rel="noreferrer">performance.now() 来衡量一个函数调用的执行时间:
I am getting an error ReferenceError: performance is not defined
when trying to use performance.now() to measure the execution time of a function call:
export async function find(someId: string, ctx: context.IContext) {
try {
var t0 = performance.now();
var res = someModel.find(someId, ctx.cookies);
var t1 = performance.now();
console.log("Call to find took " + (t1 - t0) + " milliseconds.");
return res;
} catch (err) {
console.error(err);
throw err;
}
}
有什么办法可以解决这个问题吗?
Any ideas how I can fix this?
推荐答案
我知道这是标记为前端,但如果有人遇到这个寻找 node.js 解决方案(如我),你需要首先要求性能perf_hooks 模块(在节点 8.5+ 中可用).
I know this is tagged front-end but if anyone comes across this looking for a node.js solution (like me), you need to first require performance from the perf_hooks module (available in node 8.5+).
const {performance} = require('perf_hooks');
const t0 = performance.now();
...
这篇关于ReferenceError:使用 performance.now() 时未定义性能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ReferenceError:使用 performance.now() 时未定义性能
基础教程推荐
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01