示例代码:

const got = require('got');
async function timeSpent (){
   const time = new Date().getTime()
   await got('***')
   return new Date().getTime() - time
}

请问有没有更好的办法?

最佳答案

使用 got 时不需要实现自己的时序逻辑。

响应包括一个计时对象,用于收集每个阶段花费的所有毫秒数。

你只需要从响应对象中读出 timings.phases.total

const path = "http://localhost:3000/authenticate";
const response = await got.post(path, {
  body: { username: "john_doe", password: "mypass" },
  json: true,
  headers: {
    Accept: "application/json",
    "Content-type": "application/json",
  },
});

logger.debug({type: 'performance', path, duration: response.timings.phases.total});

引用:

https://github.com/sindresorhus/got#timings

https://github.com/sindresorhus/got/pull/590

关于javascript - 使用 got 时如何计算花费的时间?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60297317/

10-13 05:58