我想知道javascript中是否有办法检索控制台历史记录。
我所说的控制台历史是指出现在开发工具控制台中的内容。例如,我想在 html 页面中打印我的开发工具中显示的所有错误、警告、信息和日志,而无需打开它们。
如果我不清楚,请告诉我。
我想知道javascript中是否有办法检索控制台历史记录。
我所说的控制台历史是指出现在开发工具控制台中的内容。例如,我想在 html 页面中打印我的开发工具中显示的所有错误、警告、信息和日志,而无需打开它们。
如果我不清楚,请告诉我。
我为此编写了一个简单的跨浏览器库,称为console.history
. 它在 GitHub 上可用:
https ://git.io/console
库基本上所做的是捕获所有调用console.[log/warn/error/debug/info]
并将它们存储在console.history
数组中。作为奖励,还添加了完整的堆栈跟踪。
测试文件test.js
包含:
function outer() {
inner();
}
function inner() {
var array = [1,2,3];
var object = {"foo": "bar", "key": "value"};
console.warn("Something went wrong, but we're okay!", array, object);
}
outer();
条目console.history
将是:
{
"type": "warn",
"timestamp": "Thu, 01 Sep 2016 15:38:28 GMT",
"arguments": {
"0": "Something went wrong, but we're okay!",
"1": [1, 2, 3],
"2": {
"foo": "bar",
"key": "value"
}
},
"stack": {
"0": "at inner (http://localhost:1337/test/test.js:6:11)",
"1": "at outer (http://localhost:1337/test/test.js:2:3)",
"2": "at http://localhost:1337/test/test.js:9:1"
}
}
Chrome 扩展有一个 API,experimental.devtools.console:
chrome.experimental.devtools.console.getMessages(function(messages) { })
此 API 已被删除。
无法使用 JavaScript 获取控制台数据。您能够做到的唯一方法基本上是劫持所有控制台功能并存储副本,然后调用默认日志行。
console.history = [];
var oldConsole = {};
for (var i in console) {
if (typeof console[i] == 'function') {
oldConsole[i] = console[i];
var strr = '(function(){\
console.history.push({func:\'' + i + '\',args : Array.prototype.slice.call(arguments)});\
oldConsole[\'' + i + '\'].apply(console, arguments);\
})';
console[i] = eval(strr);
}
}
然后使用console.history访问历史