我们有一个API请求可以登录我们的用户,如下所示:

...

//lauches an API request

router.post("/trip/analyse",function(req,res){

    t0 = Date.now();

    shell = ("sudo /usr/bin/python /mypythonFile");

    child = exec(shell, function (error, stdout, stderr) {

      if (error) { //There is an error

        res.json({"Error" : true});

        console.log(Date.now() - t0);  // <-------- HERE, How to get this right ?

      }else{ //everything went fine

        res.json({"Error" : false});

        console.log(Date.now() - t0);  // <-------- HERE, How to get this right ?

      }

    });

});
...


我看到打印的执行时间不正确,因为当许多用户同时登录时,用于计算executionTime的“ t0”值(“ Date.now()-t0”)未正确计算。它使用此API请求的最新调用的t0值,而不是适当的t0值。

这是因为exec方法是异步的,需要花费一些时间来执行。

我该如何正确执行丢失原始t0变量的执行时间(“ Date.now()-t0”)?

最佳答案

我只需要放

var t0 = Date.now();

而且有效!

关于javascript - 如何在Nodejs ChildProcess.exec中计算执行时间,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43143463/

10-13 22:30