3

示例代码:

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

我想知道是否有更好的方法?

4

5 回答 5

2

你可以通过这种方式。

console.time('test1');
console.time('test2');

setTimeout( (elem) => {
   console.log('You want to write something here!!');
   console.timeEnd('test2');
}, 2000);

console.timeEnd('test1');

于 2020-02-19T09:56:44.387 回答
2

您可以使用第 3 方统计秒表轻松记录总时间。

例子

const got = require('got');
const Stopwatch = require('statman-stopwatch');
async function timeSpent (){
    const sw = new Stopwatch();
    sw.start();
    await got('***');
    sw.stop();
    const delta = sw.read();
  return delta;
}
于 2020-02-19T09:58:32.987 回答
2

使用时不需要实现自己的时序逻辑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

于 2020-02-19T10:17:11.143 回答
1

性能- 是衡量此类事物的原生方式。

const got = require('got');
async function timeSpent (){
  var t0 = performance.now();
  await got('***')
  var t1 = performance.now();
  console.log("Call to do something took " + (t1 - t0) + " milliseconds.");
  return t1 - t0;
}

检查浏览器支持https://caniuse.com/#search=performance

于 2020-02-19T09:53:30.503 回答
1
 let currentDate = moment().format('YYYY/MM/DD HH:mm')
            let dataCalca = moment(dataValue).format('YYYY/MM/DD HH:mm')
            let hours = moment
              .duration(moment(currentDate, 'YYYY/MM/DD HH:mm')
                .diff(moment(dataCalca, 'YYYY/MM/DD HH:mm'))
              ).asHours();

所以你得到一个小时的数字。你可以用那个来计算

于 2020-02-19T10:02:07.917 回答