如何获取调用当前函数的函数的名称和行?我希望有一个像这样的基本调试功能(npmlog定义log.debug
):
function debug() {
var callee, line;
/* MAGIC */
log.debug(callee + ":" + line, arguments)
}
当从另一个函数调用时,它将是这样的:
function hello() {
debug("world!")
}
// outputs something like:
// "hello:2 'world!'"
为清楚起见,我想要的基本上类似于this in Python:
import inspect
def caller():
return inspect.stack()[2][3]
// line no from getframeinfo().lineno
是否有一个等效的节点来实现这个目标?
答案 0 :(得分:66)
使用此处的信息:Accessing line number in V8 JavaScript (Chrome & Node.js)
您可以添加一些原型来提供对V8中此信息的访问:
Object.defineProperty(global, '__stack', {
get: function() {
var orig = Error.prepareStackTrace;
Error.prepareStackTrace = function(_, stack) {
return stack;
};
var err = new Error;
Error.captureStackTrace(err, arguments.callee);
var stack = err.stack;
Error.prepareStackTrace = orig;
return stack;
}
});
Object.defineProperty(global, '__line', {
get: function() {
return __stack[1].getLineNumber();
}
});
Object.defineProperty(global, '__function', {
get: function() {
return __stack[1].getFunctionName();
}
});
function foo() {
console.log(__line);
console.log(__function);
}
foo()
分别返回'28'和'foo'。
答案 1 :(得分:14)
我也有类似的要求。我使用了nodejs提供的Error类的stack属性
我仍在学习节点,因此可能存在错误的可能性。
以下是相同的解释。同时创建了npm模块,如果您愿意,可以查看:
1. npm module 'logat'
2. git repo
假设我们使用方法'log'
'记录'对象var logger = {
log: log
}
function log(msg){
let logLineDetails = ((new Error().stack).split("at ")[3]).trim();
console.log('DEBUG', new Date().toUTCString(), logLineDetails, msg);
}
示例:强>
//suppose file name: /home/vikash/example/age.js
function getAge(age) {
logger.log('Inside getAge function'); //suppose line no: 9
}
以上示例的输出:
DEBUG on Sat, 24 Sept 2016 12:12:10 GMT at getAge(/home/vikash/example/age.js:9:12)
Inside getAge function
答案 2 :(得分:12)
我找到并安装了node-stack-trace
模块(随npm install stack-trace
安装),然后将echo
定义为:
function echo() {
var args, file, frame, line, method;
args = 1 <= arguments.length ? __slice.call(arguments, 0) : [];
frame = stackTrace.get()[1];
file = path.basename(frame.getFileName());
line = frame.getLineNumber();
method = frame.getFunctionName();
args.unshift("" + file + ":" + line + " in " + method + "()");
return log.info.apply(log, args); // changed 'debug' to canonical npmlog 'info'
};
答案 3 :(得分:8)
这里是一种用于快速调试的衬套:
console.log("DEBUG", (new Error().stack.split("at ")[1]).trim());
这将使用Node.js记录如下内容:
DEBUG SomeObject.function (/path/to/the/code.js:152:37)
-
您还可以在末尾添加自定义args,例如
console.log("DEBUG", (new Error().stack.split("at ")[1]).trim(), ">>>", myVar);
请注意,如果将其放入帮助函数中,请从[1]
至[2]
。
答案 4 :(得分:5)
以下代码仅使用核心元素。它从错误实例中解析堆栈。
"use strict";
function debugLine(message) {
let e = new Error();
let frame = e.stack.split("\n")[2];
let lineNumber = frame.split(":")[1];
let functionName = frame.split(" ")[5];
return functionName + ":" + lineNumber + " " + message;
}
function myCallingFunction() {
console.log(debugLine("error_message"));
}
myCallingFunction();
它输出类似myCallingFunction:10 error_message
我已将错误的元素提取为变量(lineNumber,functionName),以便您可以按任意方式设置返回值的格式。
答案 5 :(得分:0)
这是一种在发生错误时获取文件名的方法。您必须将函数包装在 onErrorReturnFileName 中。在这里,我从 func()
文件中包装 otherNode
。
const {func} = require('./otherNode')
function onErrorReturnFileName(funcToRead) {
let defaultPrepareStackTrace = Error.prepareStackTrace
try {
let getStack = function (err, stack) { return stack; };
Error.prepareStackTrace = getStack
return {result: funcToRead(), name: null}
}catch (ex) {
return {naem: ex.stack.shift().getFileName(), result: null}
}
Error.preppareStackTrace = defaultPrepareStackTrace
}
console.log(onErrorReturnFileName(func))