结果作为字符串在javascript与chrome或firefo

结果作为字符串在javascript与chrome或firefo

本文介绍了如何获取console.trace()的结果作为字符串在javascript与chrome或firefox?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! console.trace()在控制台上输出结果。 我想以字符串形式获取结果并将其保存到文件中。 br> 我不定义函数的名称,我也不能得到他们的名称与 callee.caller.name 。console.trace() outputs its result on console.I want to get the results as string and save them to a file.I don't define names for functions and I also can not get their names with callee.caller.name.推荐答案我不知道firefox,但在v8 / chrome,你可以使用一个方法上 captureStackTrace 。 (此处的更多信息)I'm not sure about firefox, but in v8/chrome you can use a method on the Error constructor called captureStackTrace. (More info here)因此, hacky的方式得到它将是:So a hacky way to get it would be:var getStackTrace = function() { var obj = {}; Error.captureStackTrace(obj, getStackTrace); return obj.stack;};console.log(getStackTrace());通常, getStackTrace 当它被捕获。第二个参数将 getStackTrace 排除在堆栈跟踪之外。Normally, getStackTrace would be on the stack when it's captured. The second argument there excludes getStackTrace from being included in the stack trace. 这篇关于如何获取console.trace()的结果作为字符串在javascript与chrome或firefox?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-04 20:03