我想将console.log()函数的输出保存为对象或变量。 我主要感兴趣的是接收对象结果以及行号。
以下只是为了展示我正在寻找的东西:
var myobj = {"key":"value"}; // (<< in 'myjs.js, line 123)
var mylog = console.log( myobj );
// output mylog: {"key":"value"}, myjs.js:123
提前感谢您的帮助!
答案 0 :(得分:2)
您可以使用new Error().lineNumber
获取行号
有关确定行号的更多信息 - determining line number
答案 1 :(得分:1)
你可以覆盖console.log并在谷歌浏览器中调用Error()。stack它显示行号。
在Google Chrome堆栈中看起来像这样:
Error
at Error (<anonymous>)
at Console.console.log (http://localhost/test.js:6:27)
at foo (http://localhost/test.js:13:13)
at http://localhost/test.js:16:1
因此代码需要获取3行并删除"at http://localhost"
和字符数
(function(log) {
console.log = function(o) {
var stack = Error().stack.split('\n');
log.call(console, JSON.stringify(o) + ', ' + stack[3].
replace(/.*http:\/\/[^\/]*|:[0-9]+\)$/g, ''));
};
})(console.log);
function foo() {
console.log({foo: 'bar'});
}
foo();
答案 2 :(得分:0)
尝试保存myObj对象。这就是记录器将记录的内容。
答案 3 :(得分:0)
您可以通过链接Read the output of console.log
尝试此操作function myFunctionThatMightHaveAnError(){
// instead of just failing silently, actually throw an error
$.error("My special error");
}
// Then use a try/catch block to handle it
try {
myFunctionThatMightHaveAnError();
alert("No error!"); // this line would only run if no error were thrown
} catch (e) {
if(e == "My special error") {
// Handle error
}
}