更新: 您现在可以右键单击
在“控制台”面板中右键单击>另存为,将记录的消息保存到文件中。
原始答案:
您可以使用下面显示的devtools片段创建console.save方法。它从输入中创建一个FileBlob,然后自动下载它。
(function(console){console.save = function(data, filename){ if(!data) { console.error('Console.save: No data') return; } if(!filename) filename = 'console.json' if(typeof data === "object"){ data = JSON.stringify(data, undefined, 4) } var blob = new Blob([data], {type: 'text/json'}), e = document.createEvent('MouseEvents'), a = document.createElement('a') a.download = filename a.href = window.URL.createObjectURL(blob) a.dataset.downloadurl = ['text/json', a.download, a.href].join(':') e.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null) a.dispatchEvent(e) }})(console)资料来源:http :
//bgrins.github.io/devtools-snippets/#console-
save



