如何通过覆盖以JSON格式输出?

时间:2015-10-17 12:21:44

标签: javascript json node.js express

我尝试使用重叠来控制日志,但我收到了错误。我删除JSON.stringify(arguments[0])时代码工作正常,但我需要它以JSON格式。

app.use(function(req, res, next) {
    var t_log= console.log;

    console.log = function(){
        arguments[0] = JSON.stringify(arguments[0])+" sessionID " + req.sessionID + " requestID=" + req.id +" timestamp"+ new Date();
        t_log.apply(console, arguments);

    }
    console.log("call");

    next();

});

1 个答案:

答案 0 :(得分:-1)

将通用对象转换为true J​​SON:

JSON.parse(JSON.stringify(my_generic_object))